rework to floating window on the top

TODO: keys
This commit is contained in:
Alex Bezdieniezhnykh
2024-11-25 17:53:15 +02:00
parent 9e0bb1e82e
commit 7430b33b8e
2 changed files with 42 additions and 42 deletions
+14 -7
View File
@@ -4,12 +4,19 @@
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
mc:Ignorable="d"
Title="Azaion Оператор" Height="450" Width="800">
<Grid Background="Black">
<TabControl Name="MainTabControl"
TabStripPlacement="Left"
Margin="0, 0, 0, 10"
Background="Black">
</TabControl>
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>