Улучшил градиенты, изменил размеры пенелей, сменил заголовок, добавил эллипс

This commit is contained in:
Никита Потапов 2024-03-21 23:43:25 +04:00
parent def6928344
commit f71fb44954

View File

@ -5,7 +5,7 @@
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:Lunapark" xmlns:local="clr-namespace:Lunapark"
mc:Ignorable="d" mc:Ignorable="d"
Title="Лунапарк" Height="450" Width="800"> Title="Парк развлечений" Height="450" Width="800">
<Grid> <Grid>
<Grid.Background> <Grid.Background>
<RadialGradientBrush> <RadialGradientBrush>
@ -13,7 +13,7 @@
<GradientStop Color="LightBlue"/> <GradientStop Color="LightBlue"/>
</RadialGradientBrush> </RadialGradientBrush>
</Grid.Background> </Grid.Background>
<DockPanel LastChildFill="False" Height="64" VerticalAlignment="Top" Margin="99,0,0,0"> <DockPanel LastChildFill="False" Height="50" VerticalAlignment="Top" Margin="100,0,0,0">
<DockPanel.Background> <DockPanel.Background>
<LinearGradientBrush EndPoint="1,0.5" StartPoint="0.5,0.5"> <LinearGradientBrush EndPoint="1,0.5" StartPoint="0.5,0.5">
<GradientStop Color="White" Offset="0.8"/> <GradientStop Color="White" Offset="0.8"/>
@ -21,14 +21,17 @@
</LinearGradientBrush> </LinearGradientBrush>
</DockPanel.Background> </DockPanel.Background>
</DockPanel> </DockPanel>
<DockPanel LastChildFill="False" HorizontalAlignment="Left" Width="99"> <DockPanel LastChildFill="False" HorizontalAlignment="Left" Width="100">
<DockPanel.Background> <DockPanel.Background>
<LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0.5"> <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0.5">
<GradientStop Color="White" Offset="0.8"/> <GradientStop Color="White" Offset="0.8"/>
<GradientStop Color="#FFC3F37E" /> <GradientStop Color="#FFC3F37E" />
</LinearGradientBrush> </LinearGradientBrush>
</DockPanel.Background> </DockPanel.Background>
<Grid>
<Label Content="Покатушки" Foreground="Black" Width="100" Height="50" HorizontalContentAlignment="Center" VerticalContentAlignment="Center" VerticalAlignment="Top" HorizontalAlignment="Right"/>
</Grid>
</DockPanel> </DockPanel>
<Ellipse HorizontalAlignment="Left" Height="50" Stroke="Black" VerticalAlignment="Top" Width="100"/>
</Grid> </Grid>
</Window> </Window>