mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 10:46:30 +00:00
27 lines
1.1 KiB
XML
27 lines
1.1 KiB
XML
<Window x:Class="Azaion.Annotator.DatasetExplorer"
|
|
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"
|
|
xmlns:local="clr-namespace:Azaion.Annotator"
|
|
mc:Ignorable="d"
|
|
Title="Браузер анотацій" Height="450" Width="800">
|
|
<Grid
|
|
Name="MainGrid"
|
|
ShowGridLines="False"
|
|
Background="Black"
|
|
HorizontalAlignment="Stretch">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="*"></RowDefinition>
|
|
<RowDefinition Height="32"></RowDefinition>
|
|
</Grid.RowDefinitions>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="150" />
|
|
<ColumnDefinition Width="4"/>
|
|
<ColumnDefinition Width="*" />
|
|
<ColumnDefinition Width="4"/>
|
|
<ColumnDefinition Width="200" />
|
|
</Grid.ColumnDefinitions>
|
|
</Grid>
|
|
</Window>
|