Промежуточная версия.

This commit is contained in:
Programmist73 2023-02-21 17:59:20 +04:00
parent 8755c9be2b
commit 5d68334b99

View File

@ -5,8 +5,55 @@
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:TCPMI"
mc:Ignorable="d"
Title="MainWindow" Height="450" Width="800">
<Grid>
Title="Галлерея" Height="450" Width="800">
<Grid x:Name="MainGrid" Background="#363636">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="180" />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<Border BorderBrush="#FFA500" BorderThickness="5">
<Border.Resources>
<Style TargetType="Border">
<Setter Property="CornerRadius" Value="3"/>
</Style>
</Border.Resources>
<StackPanel Name="ButtonPanel" Grid.Column="0" Background="#696969">
<Button Margin="30" Foreground="#FFA500" BorderBrush="#FFA500" BorderThickness="3" Background="#FF696B69">
Галерея
<Button.Resources>
<Style TargetType="Border">
<Setter Property="CornerRadius" Value="10"/>
</Style>
</Button.Resources>
</Button>
<Button Margin="30" Foreground="#FFA500" BorderBrush="#FFA500" BorderThickness="3" Background="#FF696B69">
Слайд шоу
<Button.Resources>
<Style TargetType="Border">
<Setter Property="CornerRadius" Value="10"/>
</Style>
</Button.Resources>
</Button>
<Button Margin="30" Foreground="#FFA500" BorderBrush="#FFA500" BorderThickness="3" Background="#FF696B69">
Редактор
<Button.Resources>
<Style TargetType="Border">
<Setter Property="CornerRadius" Value="10"/>
</Style>
</Button.Resources>
</Button>
<Button Margin="30" Foreground="#FFA500" BorderBrush="#FFA500" BorderThickness="3" Background="#FF696B69">
Корзина
<Button.Resources>
<Style TargetType="Border">
<Setter Property="CornerRadius" Value="10"/>
</Style>
</Button.Resources>
</Button>
</StackPanel>
</Border>
<WrapPanel Grid.Column="1">
</WrapPanel>
</Grid>
</Window>