1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <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">
- <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>
|