mirror of https://github.com/duggerd/KFDtool.git
15 lines
984 B
XML
15 lines
984 B
XML
<Window x:Class="KFDtool.Gui.Dialog.ContainerEnterPassword"
|
|
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="Enter Container Password" Height="120" Width="350" WindowStartupLocation="CenterOwner" ResizeMode="NoResize">
|
|
<Grid>
|
|
<Label Content="Password" HorizontalAlignment="Left" Margin="10,10,0,0" VerticalAlignment="Top"/>
|
|
<PasswordBox Name="txtPassword" HorizontalAlignment="Left" Margin="75,15,0,0" VerticalAlignment="Top" Width="250"/>
|
|
<Button Content="Submit" Click="Submit_Click" IsDefault="True" HorizontalAlignment="Left" Margin="75,44,0,0" VerticalAlignment="Top" Width="75"/>
|
|
</Grid>
|
|
</Window>
|