1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <UserControl
- x:Class="PDF_Office.Views.Dialog.ServiceDialog.RegisterOKRegion"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:PDF_Office.Views.Dialog.ServiceDialog"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:prism="http://prismlibrary.com/"
- Width="326"
- Height="420"
- prism:ViewModelLocator.AutoWireViewModel="True"
- mc:Ignorable="d">
- <Grid Background="White">
- <Button
- Width="16"
- Height="16"
- Margin="287,17,0,0"
- HorizontalAlignment="Left"
- VerticalAlignment="Top"
- Background="Transparent"
- BorderThickness="0"
- Command="{Binding CloseDialogCommand}"
- WindowChrome.IsHitTestVisibleInChrome="True">
- <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" />
- </Button>
- <Grid Margin="0,84,0,0" HorizontalAlignment="Center" VerticalAlignment="Top">
- <StackPanel>
- <Grid
- Width="128"
- Height="128"
- HorizontalAlignment="Center"
- VerticalAlignment="Top"
- Background="#D9D9D9" />
- <TextBlock
- Width="186"
- Height="28"
- Margin="0,16,0,0"
- HorizontalAlignment="Center"
- VerticalAlignment="Top"
- FontFamily="Segoe UI"
- FontSize="20"
- FontWeight="SemiBold"
- LineHeight="28"
- Text="Register successfully" />
- <Button
- x:Name="Btn_RegisterNext"
- Width="262"
- Height="32"
- Margin="0,53,0,0"
- HorizontalAlignment="Center"
- VerticalAlignment="Top"
- Background="#273C62"
- Command="{Binding RegisterGetStartCommand}"
- Content="Getting Started"
- Style="{StaticResource Btn.cta}" />
- </StackPanel>
- </Grid>
- </Grid>
- </UserControl>
|