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.

47 lines
2.2 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/homebg.png" Stretch="UniformToFill" /> -->
<!-- </Grid.Background> -->
<Border Width="1000" Height="400" BorderBrush="Silver" 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 Background="Transparent" BorderBrush="Transparent" HorizontalAlignment="Right" Command="{Binding CloseCommand}">
<Viewbox Stretch="Uniform">
<Path Data="{StaticResource CloseGeometry}"
Fill="Azure"
Stroke="Azure"
StrokeThickness="1"
HorizontalAlignment="Center"
VerticalAlignment="Center"
Margin="20 0 0 0"
Width="30" />
</Viewbox>
</Button>
</Grid>
</Border>
</Grid>
</Border>