Pump.xaml 1.0 KB

123456789101112131415161718192021222324
  1. <UserControl x:Class="Aitex.Core.UI.Control.Pump"
  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. mc:Ignorable="d"
  7. Height="79" Width="52">
  8. <UserControl.RenderTransform>
  9. <RotateTransform x:Name="rotateTransform" Angle="0" CenterX="26" CenterY="39.5"/>
  10. </UserControl.RenderTransform>
  11. <Canvas>
  12. <Image x:Name="imgPump" Source="pack://application:,,,/MECF.Framework.Common;component/Resources/Valve/PumpGreen.png">
  13. <Image.ContextMenu>
  14. <ContextMenu>
  15. <MenuItem Header="打开 (_O)" Click="OpenPump"/>
  16. <MenuItem Header="关闭 (_C)" Click="ClosePump"/>
  17. </ContextMenu>
  18. </Image.ContextMenu>
  19. </Image>
  20. </Canvas>
  21. </UserControl>