1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <UserControl x:Class="Compdfkit_Tools.PDFControl.SaveCerficateControl"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:Compdfkit_Tools.PDFControl"
- xmlns:common="clr-namespace:Compdfkit_Tools.Common"
- mc:Ignorable="d"
- Height="310" Width="550">
- <UserControl.Resources>
- <common:TextLengthToVisibilityConverter x:Key="TextLengthToVisibilityConverter"></common:TextLengthToVisibilityConverter>
- </UserControl.Resources>
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="auto"></RowDefinition>
- <RowDefinition Height="auto"></RowDefinition>
- <RowDefinition Height="auto"></RowDefinition>
- <RowDefinition Height="auto"></RowDefinition>
- <RowDefinition Height="auto"></RowDefinition>
- <RowDefinition></RowDefinition>
- </Grid.RowDefinitions>
- <TextBlock TextWrapping="Wrap" FontSize="14" Foreground="#000000" Margin="10,20,10,20" Height="40"
- Text="Save the Self-Signed Digital ID to A File">
- </TextBlock>
- <StackPanel Grid.Row="1" Orientation="Horizontal" Margin="10,0,0,8">
- <TextBlock Text="Save Location" Foreground="#43474D" FontSize="14" VerticalAlignment="Center" Margin="10,0,10,0" HorizontalAlignment="Left" Width="135" FontFamily="Segoe UI"></TextBlock>
- <Grid>
- <TextBox Width="258" Height="28" x:Name="FileNameText" VerticalContentAlignment="Center" VerticalAlignment="Center" IsReadOnly="True" Text="{Binding FilePath, Mode =TwoWay}"/>
- <TextBlock Text="Select a file" Margin="8" VerticalAlignment="Center" Visibility="{Binding ElementName=FileNameText, Path=Text, Converter={StaticResource TextLengthToVisibilityConverter}}" IsHitTestVisible="False" Foreground="#BBB"></TextBlock>
- </Grid>
- <Button x:Name="SelectFileBtn" Content="Browse" Width="90" Height="28" FontSize="14" FontFamily="Segoe UI" Margin="8,0,0,0" Click="SelectFileBtn_Click"></Button>
- </StackPanel>
- <StackPanel Grid.Row="2" Orientation="Horizontal" Margin="10,0,0,8">
- <TextBlock Foreground="#43474D" Width="135" FontSize="14" FontFamily="Segoe UI" Text="Set A Password" VerticalAlignment="Top" Margin="10,5,10,0"></TextBlock>
- <Grid>
- <PasswordBox Name="SetPasswordPbx" Padding="5,0,0,0" Width="258" Height="28" VerticalContentAlignment="Center" VerticalAlignment="Center" PasswordChanged="SetPasswordPbx_OnPasswordChanged"></PasswordBox>
- <TextBlock x:Name="PasswordTextBlock" Text="Please enter your password" Margin="8" VerticalAlignment="Center" IsHitTestVisible="False" Foreground="#BBB"></TextBlock>
- </Grid>
- </StackPanel>
- <StackPanel Grid.Row="3" Orientation="Horizontal" Margin="10,0,0,8">
- <TextBlock Foreground="#43474D" Width="135" FontSize="14" FontFamily="Segoe UI" Text="Confirm the Password" VerticalAlignment="Top" Margin="10,5,10,0"></TextBlock>
- <Grid>
- <PasswordBox Name="ConfirmPasswordPbx" Padding="5,0,0,0" Width="258" Height="28" VerticalContentAlignment="Center" VerticalAlignment="Center" PasswordChanged="ConfirmPasswordPbx_OnPasswordChanged"></PasswordBox>
- <TextBlock x:Name="ConfirmPasswordTextBlock" Text="Enter the password again" Margin="8" VerticalAlignment="Center" IsHitTestVisible="False" Foreground="#BBB"></TextBlock>
- </Grid>
- </StackPanel>
- <TextBlock Name="ErrorTipsText" Foreground="Red" Margin="167,4,0,0" Grid.Row="4"></TextBlock>
- <Grid Grid.Row="5">
- <StackPanel Orientation="Horizontal" HorizontalAlignment="Right" VerticalAlignment="Bottom" Margin="24">
- <Button x:Name="CancelBtn" Content="Cancel" Margin="0,0,10,0" Width="112" Height="32" BorderThickness="1" Click="CancelBtn_Click"></Button>
- <Button x:Name="DoneBtn" Content="Finish" Width="112" Height="32" BorderThickness="1" Click="DoneBtn_Click"></Button>
- </StackPanel>
- </Grid>
- </Grid>
- </UserControl>
|