41 lines
1.2 KiB
Plaintext
41 lines
1.2 KiB
Plaintext
|
|
<UserControl
|
||
|
|
x:Class="SicUI.Controls.HandValve"
|
||
|
|
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"
|
||
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||
|
|
d:DesignHeight="11"
|
||
|
|
d:DesignWidth="21"
|
||
|
|
mc:Ignorable="d">
|
||
|
|
<Canvas Background="Transparent" Opacity="1">
|
||
|
|
<!--<Canvas Name="nopass" Visibility="Hidden" Cursor="Hand" MouseLeftButtonDown="nopass_MouseLeftButtonDown"></Canvas>-->
|
||
|
|
<Line
|
||
|
|
Stroke="Gray"
|
||
|
|
StrokeThickness="1.5"
|
||
|
|
X1="5.2"
|
||
|
|
X2="15"
|
||
|
|
Y1="-1"
|
||
|
|
Y2="-1" />
|
||
|
|
|
||
|
|
<Line
|
||
|
|
Stroke="Gray"
|
||
|
|
StrokeThickness="1.5"
|
||
|
|
X1="10.1"
|
||
|
|
X2="10.1"
|
||
|
|
Y1="-1"
|
||
|
|
Y2="6" />
|
||
|
|
|
||
|
|
<Polygon
|
||
|
|
Points="1,1 1,10 10,5.5"
|
||
|
|
Stroke="Gray"
|
||
|
|
StrokeThickness="1.5" />
|
||
|
|
|
||
|
|
<Polygon
|
||
|
|
Points="10,5.5 20,1 20,10"
|
||
|
|
Stroke="Gray"
|
||
|
|
StrokeThickness="1.5" />
|
||
|
|
|
||
|
|
</Canvas>
|
||
|
|
</UserControl>
|