|
@@ -22,13 +22,19 @@
|
|
|
|
|
|
<Panel>
|
|
|
<Image Source="/Assets/ImgHomeView/bg.png" Stretch="Fill"/>
|
|
|
- <Grid ColumnDefinitions="1*,3*,1*,3*,1*" RowDefinitions="*,200,20,140,20,70,*">
|
|
|
+ <Grid ColumnDefinitions="1*,3*,1*,3*,1*" RowDefinitions="1*,6*,20,5*,20,3*,*" Height="{Binding $parent[Panel].Bounds.Height}">
|
|
|
<StackPanel Grid.Column="1" Grid.RowSpan="7" VerticalAlignment="Center" HorizontalAlignment="Stretch">
|
|
|
<Image Source="/Assets/ImgHomeView/logoIT.png" MaxWidth="600"/>
|
|
|
</StackPanel>
|
|
|
- <Button Grid.Column="3" Grid.Row="1" Content="Играть" Command="{Binding HomeVM.ClickPlay}" Background="#006838"/>
|
|
|
- <Button Grid.Column="3" Grid.Row="3" Content="Прогресс" Command="{Binding HomeVM.ClickStatistic}" Background="#F26527"/>
|
|
|
- <Button Grid.Column="3" Grid.Row="5" Content="Выйти" Command="{Binding HomeVM.ClickExit}" Background="#B21E22"/>
|
|
|
+ <Border Grid.Column="3" Grid.Row="1" CornerRadius="20" Background="#006838" BoxShadow="0 5 #013E21" HorizontalAlignment="Stretch">
|
|
|
+ <Button Content="Играть" Command="{Binding HomeVM.ClickPlay}" CornerRadius="20"/>
|
|
|
+ </Border>
|
|
|
+ <Border Grid.Column="3" Grid.Row="3" CornerRadius="20" Background="#F26527" BoxShadow="0 5 #753417" HorizontalAlignment="Stretch">
|
|
|
+ <Button Content="Прогресс" Command="{Binding HomeVM.ClickStatistic}" CornerRadius="20"/>
|
|
|
+ </Border>
|
|
|
+ <Border Grid.Column="3" Grid.Row="5" CornerRadius="20" Background="#B21E22" BoxShadow="0 5 #470C0D" HorizontalAlignment="Stretch">
|
|
|
+ <Button Content="Выйти" Command="{Binding HomeVM.ClickExit}" CornerRadius="20"/>
|
|
|
+ </Border>
|
|
|
</Grid>
|
|
|
</Panel>
|
|
|
|