MainTM.xaml 1.6 KB

123456789101112131415161718192021222324252627282930313233
  1. <UserControl x:Class="Venus_Themes.UserControls.MainTM"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:Venus_Themes.UserControls"
  7. mc:Ignorable="d"
  8. >
  9. <Viewbox Stretch="Fill">
  10. <Canvas Width="999" Height="884">
  11. <!--<Canvas.RenderTransform>
  12. <RotateTransform Angle="90"/>
  13. </Canvas.RenderTransform>-->
  14. <Polygon Points="28,735 28,263 435,28 843,263 843,735 435,970 28,735" Fill="#FFE5E5E5" StrokeThickness="10" Stroke="Gray">
  15. </Polygon>
  16. <Polygon Points="28,735 843,263 843,735 435,970 28,735" Fill="#FFE5E5E5" />
  17. <Ellipse Width="746" Height="746" Canvas.Left="62" Canvas.Top="126">
  18. <Ellipse.Fill>
  19. <LinearGradientBrush StartPoint="0,0" EndPoint="1,1">
  20. <GradientStop Color="Gray" Offset="0.0" />
  21. <GradientStop Color="White" Offset="0.5" />
  22. <GradientStop Color="Gray" Offset="1" />
  23. </LinearGradientBrush>
  24. </Ellipse.Fill>
  25. </Ellipse>
  26. <Polyline Points="28,735 28,263 435,28 843,263 843,735 435,970 28,735" Stroke="#FF000000" StrokeThickness="3" />
  27. </Canvas>
  28. </Viewbox>
  29. </UserControl>