Slot.xaml 1.0 KB

123456789101112131415161718192021
  1. <UserControl x:Class="VirgoUI.Controls.Parts.Slot"
  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:VirgoUI.Controls.Parts"
  7. mc:Ignorable="d">
  8. <Canvas>
  9. <Path x:Name="left" Width="28" Height="11" Canvas.Left="0" Canvas.Top="0" Stretch="Fill" Fill="{StaticResource blueSlot}" Data="M 10,144L 18,144L 18,150L 38,150L 38,155L 10,155L 10,144 Z ">
  10. <Path.ToolTip>
  11. <ToolTip x:Name="tipLeft" />
  12. </Path.ToolTip>
  13. </Path>
  14. <Path x:Name="right" Width="28" Height="11" Canvas.Left="131" Canvas.Top="0" Stretch="Fill" Fill="{StaticResource blueSlot}" Data="M 169,144L 161,144L 161,150L 141,150L 141,155L 169,155L 169,144 Z ">
  15. <Path.ToolTip>
  16. <ToolTip x:Name="tipRight" />
  17. </Path.ToolTip>
  18. </Path>
  19. </Canvas>
  20. </UserControl>