Накинул панелей и градиентов

This commit is contained in:
Никита Потапов 2024-03-21 23:22:27 +04:00
parent 6b9ca4be28
commit def6928344

View File

@ -5,8 +5,30 @@
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:Lunapark"
mc:Ignorable="d"
Title="MainWindow" Height="450" Width="800">
Title="Лунапарк" Height="450" Width="800">
<Grid>
<Grid.Background>
<RadialGradientBrush>
<GradientStop Color="White" Offset="1"/>
<GradientStop Color="LightBlue"/>
</RadialGradientBrush>
</Grid.Background>
<DockPanel LastChildFill="False" Height="64" VerticalAlignment="Top" Margin="99,0,0,0">
<DockPanel.Background>
<LinearGradientBrush EndPoint="1,0.5" StartPoint="0.5,0.5">
<GradientStop Color="White" Offset="0.8"/>
<GradientStop Color="#FFC3F37E" />
</LinearGradientBrush>
</DockPanel.Background>
</DockPanel>
<DockPanel LastChildFill="False" HorizontalAlignment="Left" Width="99">
<DockPanel.Background>
<LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0.5">
<GradientStop Color="White" Offset="0.8"/>
<GradientStop Color="#FFC3F37E" />
</LinearGradientBrush>
</DockPanel.Background>
</DockPanel>
</Grid>
</Window>