ButterflyValve.xaml 1.2 KB

12345678910111213141516171819
  1. <UserControl x:Class="Venus_Themes.UserControls.ButterflyValve"
  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" x:Name="valve" Cursor="Hand">
  9. <UserControl.RenderTransform>
  10. <TransformGroup>
  11. <RotateTransform CenterX="17" CenterY="17" Angle="{Binding ElementName=valve,Path=RotateTransformValue}"/>
  12. </TransformGroup>
  13. </UserControl.RenderTransform>
  14. <Border Width="35" Height="35" CornerRadius="17" Background="#D9D9D9" Opacity="0.95">
  15. <Path Width="31" Height="10" Fill="Black" Stroke="Black" Stretch="Fill" Data="M213.333333 507.733333h725.333334v42.666667H204.8l145.066667 145.066667-29.866667 29.866666L128 533.333333 320 341.333333l29.866667 29.866667L213.333333 507.733333z"/>
  16. </Border>
  17. </UserControl>