Cosmos/Demos/zMachine/Frotz.Net/source/Desktop/WPFMachine/Options/GameDirectory.xaml
2016-06-09 10:34:36 -04:00

16 lines
774 B
XML

<UserControl x:Class="WPFMachine.Options.GameDirectory"
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"
mc:Ignorable="d"
d:DesignHeight="30" d:DesignWidth="300" Height="30">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition Width="30" />
</Grid.ColumnDefinitions>
<Label x:Name="lDir" />
<Button Content="X" x:Name="bRemove" Click="bRemove_Click" Grid.Column="1" Margin="4" />
</Grid>
</UserControl>