mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 09:46:30 +00:00
7430b33b8e
TODO: keys
23 lines
856 B
XML
23 lines
856 B
XML
<Window x:Class="Azaion.Suite.MainSuite"
|
|
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"
|
|
Title="Azaion Оператор" Height="100" Width="200"
|
|
WindowStyle="None"
|
|
ResizeMode="NoResize"
|
|
Top="0"
|
|
Topmost="True"
|
|
>
|
|
<Grid>
|
|
<ListView Name="ListView" Background="Black" BorderBrush="Black">
|
|
<ListView.ItemsPanel>
|
|
<ItemsPanelTemplate>
|
|
<StackPanel Orientation="Horizontal" />
|
|
</ItemsPanelTemplate>
|
|
</ListView.ItemsPanel>
|
|
</ListView>
|
|
</Grid>
|
|
</Window>
|