RegisterOKRegion.xaml 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. <Button
  15. Width="16"
  16. Height="16"
  17. Margin="287,17,0,0"
  18. HorizontalAlignment="Left"
  19. VerticalAlignment="Top"
  20. Background="Transparent"
  21. BorderThickness="0"
  22. Command="{Binding CloseDialogCommand}"
  23. WindowChrome.IsHitTestVisibleInChrome="True">
  24. <Polygon Fill="{StaticResource color.btn.sec.text.def}" Points="11.2919922 12 12 11.2919922 6.70800781 6 12 0.708007813 11.2919922 0 6 5.29199219 0.708007812 9.76996262e-15 -2.27456942e-13 0.708007813 5.29199219 6 0 11.2919922 0.708007812 12 6 6.70800781" />
  25. </Button>
  26. <Grid Margin="0,84,0,0" HorizontalAlignment="Center" VerticalAlignment="Top">
  27. <StackPanel>
  28. <Grid
  29. Width="128"
  30. Height="128"
  31. HorizontalAlignment="Center"
  32. VerticalAlignment="Top"
  33. Background="#D9D9D9" />
  34. <TextBlock
  35. Width="186"
  36. Height="28"
  37. Margin="0,16,0,0"
  38. HorizontalAlignment="Center"
  39. VerticalAlignment="Top"
  40. FontFamily="Segoe UI"
  41. FontSize="20"
  42. FontWeight="SemiBold"
  43. LineHeight="28"
  44. Text="Register successfully" />
  45. <Button
  46. x:Name="Btn_RegisterNext"
  47. Width="262"
  48. Height="32"
  49. Margin="0,53,0,0"
  50. HorizontalAlignment="Center"
  51. VerticalAlignment="Top"
  52. Background="#273C62"
  53. Command="{Binding RegisterGetStartCommand}"
  54. Content="Getting Started"
  55. Style="{StaticResource Btn.cta}" />
  56. </StackPanel>
  57. </Grid>
  58. </Grid>
  59. </UserControl>