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.
38 lines
1.9 KiB
38 lines
1.9 KiB
<Border x:Class="SparkClient.Views.Configuration.ConfigMenuPage" |
|
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:local="clr-namespace:SparkClient.Views" |
|
mc:Ignorable="d" > |
|
<Grid> |
|
<Grid.Background> |
|
<ImageBrush ImageSource="pack://application:,,,/Resource/Images/UIResource/08-bg.jpg" Stretch="UniformToFill" /> |
|
</Grid.Background> |
|
|
|
<Border Width="1000" Height="400" BorderBrush="Transparent" BorderThickness="1" CornerRadius="20"> |
|
<!-- <Border.Background> --> |
|
<!-- <RadialGradientBrush GradientOrigin="0.5,0.5" Center="0.5,0.5" RadiusX="0.5" RadiusY="0.5"> --> |
|
<!-- ~1~ 内部颜色 @1@ --> |
|
<!-- <GradientStop Color="#754C4D4F" Offset="0.0" /> --> |
|
<!-- ~1~ 外部颜色 @1@ --> |
|
<!-- <GradientStop Color="#75944703" Offset="2.0" /> --> |
|
<!-- </RadialGradientBrush> --> |
|
<!-- </Border.Background> --> |
|
|
|
<Grid> |
|
<Grid.RowDefinitions> |
|
<RowDefinition Height="Auto"/> |
|
<RowDefinition Height="*"/> |
|
</Grid.RowDefinitions> |
|
<Button Grid.Row="0" Background="Transparent" BorderBrush="Transparent" HorizontalAlignment="Right" Padding="0" Margin="0 5 10 0 " Command="{Binding CloseCommand}"> |
|
<Image Source="../../Resource/Images/UIResource/01-8.png" x:Name="ImageClosed" Width="25" Height="40"/> |
|
</Button> |
|
|
|
|
|
</Grid> |
|
|
|
|
|
</Border> |
|
</Grid> |
|
</Border> |