mirror of https://github.com/duggerd/KFDtool.git
17 lines
1.2 KiB
Plaintext
17 lines
1.2 KiB
Plaintext
|
<UserControl x:Class="KFDtool.Gui.Control.UtilFixDesKeyParity"
|
||
|
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:KFDtool.Gui.Control"
|
||
|
mc:Ignorable="d"
|
||
|
d:DesignHeight="450" d:DesignWidth="800">
|
||
|
<Grid>
|
||
|
<Label Content="DES Key IN" HorizontalAlignment="Left" Margin="22,44,0,0" VerticalAlignment="Top"/>
|
||
|
<TextBox Name="txtDesKeyIn" MaxLength="16" HorizontalAlignment="Left" Height="23" Margin="109,47,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Width="150"/>
|
||
|
<Label Content="DES Key OUT" HorizontalAlignment="Left" Margin="22,78,0,0" VerticalAlignment="Top"/>
|
||
|
<TextBox Name="txtDesKeyOut" MaxLength="16" HorizontalAlignment="Left" Height="23" Margin="109,81,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Width="150"/>
|
||
|
<Button Content="Fix" Click="Fix_Button_Click" HorizontalAlignment="Left" Margin="109,119,0,0" VerticalAlignment="Top" Width="75"/>
|
||
|
</Grid>
|
||
|
</UserControl>
|