Files
SamplePreSystem-CS/SamplePreSystemApp/Window1.xaml

33 lines
1.0 KiB
Plaintext
Raw Normal View History

2026-04-30 11:34:41 +08:00
<Window
x:Class="SamplePreSystemApp.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:SamplePreSystemApp"
xmlns:local1="clr-namespace:SamplePreSystem.UI.BaseControls;assembly=SamplePreSystem.UI"
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
Title="Window1"
Width="800"
Height="450"
mc:Ignorable="d">
<Grid>
<StackPanel>
<Ellipse Width="200" Height="200">
<Ellipse.Fill>
<RadialGradientBrush>
<GradientStop Color="Gray" Offset="1"/>
<GradientStop Color="White" Offset="0"/>
</RadialGradientBrush>
</Ellipse.Fill>
</Ellipse>
</StackPanel>
</Grid>
</Window>