mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 22:36:31 +00:00
62 lines
3.0 KiB
XML
62 lines
3.0 KiB
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="50" Width="214"
|
|
WindowStyle="None"
|
|
ResizeMode="NoResize"
|
|
Top="0"
|
|
Topmost="True"
|
|
MouseMove="OnMouseMove"
|
|
MouseDown="MainSuite_OnMouseDown">
|
|
<Grid Background="Black">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="48"></ColumnDefinition>
|
|
<ColumnDefinition Width="*"></ColumnDefinition>
|
|
<ColumnDefinition Width="24"></ColumnDefinition>
|
|
</Grid.ColumnDefinitions>
|
|
<Border Grid.Column="0" Padding="5">
|
|
<Image Source="logo.png" />
|
|
</Border>
|
|
<ListView
|
|
Grid.Column="1"
|
|
Name="ListView"
|
|
Background="Black" BorderBrush="Black">
|
|
<ListView.ItemsPanel>
|
|
<ItemsPanelTemplate>
|
|
<StackPanel Orientation="Horizontal" />
|
|
</ItemsPanelTemplate>
|
|
</ListView.ItemsPanel>
|
|
</ListView>
|
|
<Border Grid.Column="2">
|
|
<Button
|
|
VerticalAlignment="Top"
|
|
Width="18"
|
|
Height="18"
|
|
ToolTip="Закрити" Background="Black" BorderBrush="Black" Cursor="Hand"
|
|
Name="CloseBtn"
|
|
Click="CloseBtn_OnClick">
|
|
<Path Stretch="Fill" Fill="LightGray" Data="M5.29289 5.29289C5.68342 4.90237 6.31658 4.90237 6.70711 5.29289L12 10.5858L17.2929 5.29289C17.6834 4.90237 18.3166
|
|
4.90237 18.7071 5.29289C19.0976 5.68342 19.0976 6.31658 18.7071 6.70711L13.4142 12L18.7071 17.2929C19.0976 17.6834 19.0976 18.3166 18.7071 18.7071C18.3166
|
|
19.0976 17.6834 19.0976 17.2929 18.7071L12 13.4142L6.70711 18.7071C6.31658 19.0976 5.68342 19.0976 5.29289 18.7071C4.90237 18.3166 4.90237 17.6834 5.29289
|
|
17.2929L10.5858 12L5.29289 6.70711C4.90237 6.31658 4.90237 5.68342 5.29289 5.29289Z" />
|
|
<Button.Style>
|
|
<Style TargetType="{x:Type Button}">
|
|
<Setter Property="Template">
|
|
<Setter.Value>
|
|
<ControlTemplate TargetType="{x:Type Button}">
|
|
<Border Background="{TemplateBinding Background}" BorderThickness="1">
|
|
<ContentPresenter HorizontalAlignment="Center" VerticalAlignment="Center"/>
|
|
</Border>
|
|
</ControlTemplate>
|
|
</Setter.Value>
|
|
</Setter>
|
|
</Style>
|
|
</Button.Style>
|
|
</Button>
|
|
</Border>
|
|
</Grid>
|
|
</Window>
|