29 lines
1.1 KiB
Plaintext
29 lines
1.1 KiB
Plaintext
|
<Window x:Class="Filtration.ItemFilterPreview.MainWindow"
|
||
|
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:Filtration.ItemFilterPreview"
|
||
|
xmlns:userControls="clr-namespace:Filtration.ItemFilterPreview.UserControls"
|
||
|
mc:Ignorable="d"
|
||
|
Title="MainWindow" Height="350" Width="525">
|
||
|
<Grid>
|
||
|
<Grid Background="Black">
|
||
|
<Grid.RowDefinitions>
|
||
|
<RowDefinition />
|
||
|
<RowDefinition />
|
||
|
<RowDefinition />
|
||
|
<RowDefinition />
|
||
|
<RowDefinition />
|
||
|
</Grid.RowDefinitions>
|
||
|
<Grid.ColumnDefinitions>
|
||
|
<ColumnDefinition />
|
||
|
<ColumnDefinition />
|
||
|
<ColumnDefinition />
|
||
|
</Grid.ColumnDefinitions>
|
||
|
<userControls:ItemSocketsControl />
|
||
|
</Grid>
|
||
|
|
||
|
</Grid>
|
||
|
</Window>
|