PressureSwitchBig.xaml 625 B

123456789101112
  1. <UserControl x:Class="Aitex.Core.UI.Control.PressureSwitchBig"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. Height="20" Width="20" MaxHeight="20" MaxWidth="20" MinHeight="20" Opacity="1" MinWidth="20">
  5. <UserControl.RenderTransform>
  6. <RotateTransform CenterX="10" x:Name="rotateTransform" CenterY="10"></RotateTransform>
  7. </UserControl.RenderTransform>
  8. <Canvas>
  9. <Ellipse Stroke="Black" Fill="Green" x:Name="psEllipse" Panel.ZIndex="1000" Height="20" Width="20" Opacity="1" />
  10. </Canvas>
  11. </UserControl>