TSCHMI_done/MainWindow.xaml

32 lines
1.4 KiB
Plaintext
Raw Normal View History

<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>
2024-02-29 15:03:05 +04:00
<ColumnDefinition Width ="*" />
<ColumnDefinition Width ="*" />
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
2024-02-29 15:03:05 +04:00
<RowDefinition Height="3*" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
2024-02-29 14:36:39 +04:00
<GridSplitter Grid.Column="1" Grid.Row="0" ShowsPreview="False" Width="3" HorizontalAlignment="Left" 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>
2024-02-29 15:03:05 +04:00
<ColumnDefinition Width="*" />
2024-02-29 14:36:39 +04:00
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
2024-02-29 15:03:05 +04:00
<RowDefinition Height="*" />
<RowDefinition Height="2*" />
</Grid.RowDefinitions>
</Grid>
</Grid>
</Window>