PressureSwitch.xaml 620 B

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