33 lines
1.5 KiB
Plaintext
33 lines
1.5 KiB
Plaintext
|
<Window x:Class="ТСЧМИ.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:ТСЧМИ"
|
||
|
mc:Ignorable="d"
|
||
|
Title="MainWindow" Height="450" Width="800">
|
||
|
<Grid ShowGridLines="True">
|
||
|
<Grid.ColumnDefinitions>
|
||
|
<ColumnDefinition MinWidth="200"/>
|
||
|
<ColumnDefinition Width="auto"/>
|
||
|
<ColumnDefinition MinWidth="100"/>
|
||
|
</Grid.ColumnDefinitions>
|
||
|
<Grid.RowDefinitions>
|
||
|
<RowDefinition MinHeight="200"/>
|
||
|
<RowDefinition MaxHeight="100"/>
|
||
|
</Grid.RowDefinitions>
|
||
|
<GridSplitter Grid.Column="1" Grid.Row="0" ShowsPreview="False" Width="3" HorizontalAlignment="Center" VerticalAlignment="Stretch" />
|
||
|
<GridSplitter Grid.Row="1" Grid.ColumnSpan="3" Height="3" HorizontalAlignment="Stretch" VerticalAlignment="Top" />
|
||
|
<Grid Grid.Row="0" Grid.Column="2" ShowGridLines="True">
|
||
|
<Grid.ColumnDefinitions>
|
||
|
<ColumnDefinition MinWidth="30"/>
|
||
|
<ColumnDefinition Width="100"/>
|
||
|
</Grid.ColumnDefinitions>
|
||
|
<Grid.RowDefinitions>
|
||
|
<RowDefinition MinHeight="100"/>
|
||
|
<RowDefinition MinHeight="200"/>
|
||
|
</Grid.RowDefinitions>
|
||
|
</Grid>
|
||
|
</Grid>
|
||
|
</Window>
|