15 lines
1 KiB
XML
15 lines
1 KiB
XML
<Window x:Class="AFCExplorer.GenericSingleInputWindow"
|
|
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:AFCExplorer"
|
|
mc:Ignorable="d"
|
|
Title="GenericSingleInputWindow" Height="105" Width="250" ResizeMode="NoResize">
|
|
<Grid>
|
|
<TextBox x:Name="TextBox" Margin="10,10,10,0" TextWrapping="Wrap" Text="TextBox" VerticalAlignment="Top" Grid.ColumnSpan="2"/>
|
|
<Button x:Name="OKButton" Content="OK" HorizontalAlignment="Right" Margin="0,0,10,10" VerticalAlignment="Bottom" Height="20" Width="50" Grid.Column="1" Click="OKButton_Click"/>
|
|
<Button x:Name="CancelButton" Content="Cancel" HorizontalAlignment="Right" Margin="0,0,65,10" VerticalAlignment="Bottom" Width="50" Height="20" Grid.Column="1" Click="CancelButton_Click"/>
|
|
|
|
</Grid>
|
|
</Window>
|