33 lines
1.0 KiB
Plaintext
33 lines
1.0 KiB
Plaintext
|
|
<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>
|