You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
117 lines
6.3 KiB
117 lines
6.3 KiB
<Border x:Class="SparkClient.Views.BaseWindow.HomeWindow" |
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
|
xmlns:hc="https://handyorg.github.io/handycontrol" |
|
xmlns:local="clr-namespace:SparkClient.Views.BaseWindow" |
|
xmlns:baseWindow="clr-namespace:SparkClient.ViewModel.BaseWindow" |
|
mc:Ignorable="d" |
|
> |
|
<!-- Height="450" Width="800" --> |
|
<Border.Background> |
|
<ImageBrush ImageSource="pack://application:,,,/Resource/Images/homebg.png" Stretch="UniformToFill" /> |
|
</Border.Background> |
|
<Grid> |
|
<Grid.ColumnDefinitions> |
|
<ColumnDefinition Width="*" /> |
|
<ColumnDefinition Width="*" /> |
|
</Grid.ColumnDefinitions> |
|
|
|
<!-- 左侧占位 --> |
|
<Grid Grid.Column="0"></Grid> |
|
|
|
<!-- 右侧主内容 --> |
|
<Grid Grid.Column="1" VerticalAlignment="Center" Height="800" Width="500"> |
|
<Grid.RowDefinitions> |
|
<!-- 第一排 --> |
|
<RowDefinition Height="8*" /> |
|
<!-- 第二排 --> |
|
<RowDefinition Height="5*" /> |
|
</Grid.RowDefinitions> |
|
|
|
<!-- 第一排按钮 --> |
|
<Button Grid.Row="0" Height="500" |
|
Background="Transparent" BorderBrush="Transparent" Command="{Binding ShowDiamondSelPageCommand}"> |
|
<Border BorderBrush="Transparent" BorderThickness="1" CornerRadius="20" MouseLeave="UIElement_OnMouseLeave" MouseEnter="UIElement_OnMouseEnter"> |
|
<Border.Background> |
|
<RadialGradientBrush GradientOrigin="0.5,0.5" Center="0.5,0.5" RadiusX="0.5" RadiusY="0.5"> |
|
<!-- 内部颜色 --> |
|
<GradientStop Color="#FF4C4D4F" Offset="0.0" /> |
|
<!-- 外部颜色 --> |
|
<GradientStop Color="#FF944703" Offset="2.0" /> |
|
</RadialGradientBrush> |
|
</Border.Background> |
|
<Grid Margin="0 " > |
|
<Grid.RowDefinitions> |
|
<RowDefinition Height="Auto"/> |
|
<RowDefinition Height="Auto"/> |
|
</Grid.RowDefinitions> |
|
<Image Grid.Row="0" Source="pack://application:,,,/Resource/Images/diamtest_3x.png" Height="400" Width="400" Margin="20 0" /> |
|
|
|
<TextBlock Grid.Row="1" Text="{DynamicResource StartTest}" FontSize="36" Margin="10" |
|
TextAlignment="Center" Foreground="Azure"/> |
|
</Grid> |
|
</Border> |
|
</Button> |
|
|
|
|
|
<!-- 第二排两个按钮 --> |
|
<Grid Grid.Row="1" Margin="0 10 0 0"> |
|
<Grid.ColumnDefinitions> |
|
<ColumnDefinition Width="*" /> |
|
<ColumnDefinition Width="*" /> |
|
</Grid.ColumnDefinitions> |
|
|
|
<!-- 第二排第一个按钮 --> |
|
<Button Grid.Column="0" Command="{Binding ShowConfigPageCommand}" Background="Transparent" BorderBrush="Transparent" Height="300" > |
|
<Border BorderBrush="Transparent" BorderThickness="1" CornerRadius="20" MouseLeave="UIElement_OnMouseLeave" MouseEnter="UIElement_OnMouseEnter"> |
|
<Border.Background> |
|
<RadialGradientBrush GradientOrigin="0.5,0.5" Center="0.5,0.5" RadiusX="0.5" RadiusY="0.5"> |
|
<!-- 内部颜色 --> |
|
<GradientStop Color="#FF4C4D4F" Offset="0.0" /> |
|
<!-- 外部颜色 --> |
|
<GradientStop Color="#FF944703" Offset="2.0" /> |
|
</RadialGradientBrush> |
|
</Border.Background> |
|
<Grid Margin="0 " > |
|
<Grid.RowDefinitions> |
|
<RowDefinition Height="Auto"/> |
|
<RowDefinition Height="Auto"/> |
|
</Grid.RowDefinitions> |
|
<Image Grid.Row="0" Source="pack://application:,,,/Resource/Images/config_3x.png" Height="200" Width="130" Margin="30 0" /> |
|
|
|
<TextBlock Grid.Row="1" Text="{DynamicResource Config}" FontSize="28" Margin="10" |
|
TextAlignment="Center" Foreground="Azure"/> |
|
</Grid> |
|
</Border> |
|
</Button> |
|
|
|
|
|
<Button Grid.Column="1" Command="{Binding ShowHelperPageCommand}" Background="Transparent" BorderBrush="Transparent" Height="300" > |
|
<Border BorderBrush="Transparent" BorderThickness="1" CornerRadius="20" MouseLeave="UIElement_OnMouseLeave" MouseEnter="UIElement_OnMouseEnter"> |
|
<Border.Background> |
|
<RadialGradientBrush GradientOrigin="0.5,0.5" Center="0.5,0.5" RadiusX="0.5" RadiusY="0.5"> |
|
<!-- 内部颜色 --> |
|
<GradientStop Color="#FF4C4D4F" Offset="0.0" /> |
|
<!-- 外部颜色 --> |
|
<GradientStop Color="#FF944703" Offset="2.0" /> |
|
</RadialGradientBrush> |
|
</Border.Background> |
|
<Grid Margin="0 " > |
|
<Grid.RowDefinitions> |
|
<RowDefinition Height="Auto"/> |
|
<RowDefinition Height="Auto"/> |
|
</Grid.RowDefinitions> |
|
<Image Grid.Row="0" Source="pack://application:,,,/Resource/Images/help_3x.png" Height="200" Width="140" Margin="20 0" /> |
|
|
|
<TextBlock Grid.Row="1" Text="{DynamicResource Help}" FontSize="28" Margin="10" |
|
TextAlignment="Center" Foreground="Azure"/> |
|
</Grid> |
|
</Border> |
|
</Button> |
|
</Grid> |
|
</Grid> |
|
</Grid> |
|
|
|
</Border>
|
|
|