This repository has been archived on 2024-01-02. You can view files and clone it, but cannot push or open issues or pull requests.
Sic06/SicUI/Controls/Slot.xaml

38 lines
1.2 KiB
XML

<UserControl
x:Class="SicUI.Controls.Parts.Slot"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:SicUI.Controls.Parts"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d">
<Canvas>
<Path
x:Name="left"
Canvas.Left="0"
Canvas.Top="0"
Width="28"
Height="11"
Data="M 10,144L 18,144L 18,150L 38,150L 38,155L 10,155L 10,144 Z "
Fill="{StaticResource blueSlot}"
Stretch="Fill">
<Path.ToolTip>
<ToolTip x:Name="tipLeft" />
</Path.ToolTip>
</Path>
<Path
x:Name="right"
Canvas.Left="131"
Canvas.Top="0"
Width="28"
Height="11"
Data="M 169,144L 161,144L 161,150L 141,150L 141,155L 169,155L 169,144 Z "
Fill="{StaticResource blueSlot}"
Stretch="Fill">
<Path.ToolTip>
<ToolTip x:Name="tipRight" />
</Path.ToolTip>
</Path>
</Canvas>
</UserControl>