KFDtool/sw/control/KFDtool.Gui/Dialog/ContainerSetPassword.xaml

17 lines
1.2 KiB
XML

<Window x:Class="KFDtool.Gui.Dialog.ContainerSetPassword"
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:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:KFDtool.Gui.Dialog"
mc:Ignorable="d"
Title="Set Container Password" Height="150" Width="400" WindowStartupLocation="CenterOwner" ResizeMode="NoResize">
<Grid>
<Label Content="Password" HorizontalAlignment="Left" Margin="10,10,0,0" VerticalAlignment="Top"/>
<PasswordBox Name="txtPassword" HorizontalAlignment="Left" Margin="120,15,0,0" VerticalAlignment="Top" Width="250"/>
<Label Content="Confirm Password" HorizontalAlignment="Left" Margin="10,41,0,0" VerticalAlignment="Top"/>
<PasswordBox Name="txtPasswordConfirm" HorizontalAlignment="Left" Margin="120,46,0,0" VerticalAlignment="Top" Width="250"/>
<Button Content="Set Password" Click="Set_Password_Click" IsDefault="True" HorizontalAlignment="Left" Margin="120,76,0,0" VerticalAlignment="Top" Width="100"/>
</Grid>
</Window>