Вторая лабораторная.

This commit is contained in:
ElEgEv 2023-02-22 12:23:16 +04:00
parent b61c12f8ea
commit 88607f7c10

View File

@ -8,12 +8,12 @@
Title="Галлерея" Height="450" Width="800">
<Grid x:Name="MainGrid" Background="#363636">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="180" />
<ColumnDefinition />
<ColumnDefinition Width="4*"/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="*"/>
<RowDefinition Height="375"/>
<RowDefinition Height="10*"/>
</Grid.RowDefinitions>
<Border BorderBrush="#FFA500" BorderThickness="5" Grid.Column="0" Grid.Row="0" Grid.RowSpan="2">
<StackPanel Name="ButtonPanel" Background="#696969">
@ -52,7 +52,7 @@
</StackPanel>
</Border>
<Border Grid.Column="1" Grid.Row="0" BorderBrush="#FFA500" BorderThickness="5">
<WrapPanel>
<WrapPanel HorizontalAlignment="Center" VerticalAlignment="Center">
<Label Foreground="#FFA500" VerticalAlignment="center">
<Bold>Сортировать по:</Bold>
</Label>
@ -61,7 +61,7 @@
<RadioButton Foreground="#FFA500" Content="Названию" VerticalAlignment="Center" Margin="20, 0, 0, 0" />
</WrapPanel>
</Border>
<WrapPanel Grid.Column="1" Grid.Row="1">
</WrapPanel>
<DockPanel Grid.Column="1" Grid.Row="1">
</DockPanel>
</Grid>
</Window>