RegisterOKRegion.xaml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <UserControl
  2. x:Class="PDF_Office.Views.Dialog.ServiceDialog.RegisterOKRegion"
  3. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:PDF_Office.Views.Dialog.ServiceDialog"
  7. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  8. xmlns:prism="http://prismlibrary.com/"
  9. Width="326"
  10. Height="420"
  11. prism:ViewModelLocator.AutoWireViewModel="True"
  12. mc:Ignorable="d">
  13. <Grid Background="White">
  14. <Grid Margin="0,84,0,0" HorizontalAlignment="Center" VerticalAlignment="Top">
  15. <StackPanel>
  16. <Grid
  17. Width="128"
  18. Height="128"
  19. HorizontalAlignment="Center"
  20. VerticalAlignment="Top"
  21. Background="#D9D9D9" />
  22. <TextBlock
  23. Width="186"
  24. Height="28"
  25. Margin="0,16,0,0"
  26. HorizontalAlignment="Center"
  27. VerticalAlignment="Top"
  28. FontFamily="Segoe UI"
  29. FontSize="20"
  30. FontWeight="SemiBold"
  31. LineHeight="28"
  32. Text="Register successfully" />
  33. <Button
  34. x:Name="Btn_RegisterNext"
  35. Width="262"
  36. Height="32"
  37. Margin="0,53,0,0"
  38. HorizontalAlignment="Center"
  39. VerticalAlignment="Top"
  40. Background="#273C62"
  41. Command="{Binding RegisterGetStartCommand}"
  42. Content="Getting Started"
  43. Style="{StaticResource Btn.cta}" />
  44. </StackPanel>
  45. </Grid>
  46. </Grid>
  47. </UserControl>