1234567891011121314151617181920212223242526272829303132333435 |
- <UserControl x:Class="Venus_Themes.UserControls.MainTM"
- 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:Venus_Themes.UserControls"
- mc:Ignorable="d"
- >
- <Viewbox Stretch="Fill">
- <Canvas Width="999" Height="884">
- <!--<Canvas.RenderTransform>
- <RotateTransform Angle="90"/>
- </Canvas.RenderTransform>-->
- <Polygon Points="28,735 28,263 438,28 843,263 843,735 435,970 28,735" Fill="#FFE5E5E5" StrokeThickness="10" Stroke="Gray">
-
- </Polygon>
- <Polygon Points="28,735 843,263 843,735 438,970 28,735" Fill="#FFE5E5E5" />
- <Ellipse Width="746" Height="746" Canvas.Left="62" Canvas.Top="126">
- <Ellipse.Fill>
- <RadialGradientBrush >
- <GradientStop Color="#FFE5E2DF" Offset="0" />
- <GradientStop Color="#FFFFFFFF" Offset="0" />
- <GradientStop Color="#FFADAEB0" Offset="0.52" />
- <GradientStop Color="sc#1, 0.238698155, 0.250727534, 0.259264916" Offset="0.82" />
- <GradientStop Color="DimGray" Offset="1" />
- </RadialGradientBrush>
- </Ellipse.Fill>
- </Ellipse>
- <Polyline Points="28,735 28,263 438,28 843,263 843,735 435,970 28,735" Stroke="#FF000000" StrokeThickness="3" />
- </Canvas>
- </Viewbox>
-
- </UserControl>
|