添加项目文件。
This commit is contained in:
33
SamplePreSystemApp/Window1.xaml
Normal file
33
SamplePreSystemApp/Window1.xaml
Normal file
@@ -0,0 +1,33 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user