LoadLockRight.xaml 1.0 KB

12345678910111213141516171819202122
  1. <UserControl x:Class="Venus_Themes.UserControls.LoadLockRight"
  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. d:DesignHeight="450" d:DesignWidth="800">
  9. <Viewbox Stretch="Fill" >
  10. <Polygon Stroke="Black" StrokeThickness="2" Points="200,200 200,100 164,0 0,90 80,200">
  11. <Polygon.Fill>
  12. <LinearGradientBrush StartPoint="0,0" EndPoint="1,1">
  13. <GradientStop Color="Silver" Offset="0.0" />
  14. <GradientStop Color="White" Offset="0.5" />
  15. <GradientStop Color="Silver" Offset="1" />
  16. </LinearGradientBrush>
  17. </Polygon.Fill>
  18. </Polygon>
  19. </Viewbox>
  20. </UserControl>