mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-27 14:02:19 +00:00
16 lines
774 B
XML
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>
|