StationMonitor.xaml
4.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<UserControl x:Class="HHECS.Controls.StationMonitor"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:HHECS.Controls"
mc:Ignorable="d"
d:DesignHeight="450" d:DesignWidth="800">
<Grid>
<Viewbox Stretch="Fill">
<Canvas Width="600" Height="280">
<local:StationH x:Name="conveyor3" Height="64" Width="136" Canvas.Left="92" Canvas.Top="14"/>
<local:StationH x:Name="conveyor6" Height="64" Width="136" Canvas.Left="92" Canvas.Top="183"/>
<local:StationH x:Name="conveyor2" Height="64" Width="136" Canvas.Left="233" Canvas.Top="14"/>
<local:StationH x:Name="conveyor5" Height="64" Width="136" Canvas.Left="233" Canvas.Top="183"/>
<local:StationH x:Name="conveyor1" Height="64" Width="136" Canvas.Left="374" Canvas.Top="14"/>
<local:StationV x:Name="conveyor4" Height="96" Width="64" Canvas.Left="303" Canvas.Top="81"/>
<Image Height="58" Canvas.Left="40" Canvas.Top="14" Width="52" Source="/HHECS;component/Content/image/箭头.png"/>
<Image Height="58" Canvas.Left="38" Canvas.Top="183" Width="52" Source="/HHECS;component/Content/image/箭头.png" RenderTransformOrigin="0.5,0.5">
<Image.RenderTransform>
<TransformGroup>
<ScaleTransform/>
<SkewTransform/>
<RotateTransform Angle="179.882"/>
<TranslateTransform/>
</TransformGroup>
</Image.RenderTransform>
</Image>
<Image Height="58" Canvas.Left="388" Canvas.Top="96" Width="52" Source="/HHECS;component/Content/image/箭头.png" RenderTransformOrigin="0.5,0.5">
<Image.RenderTransform>
<TransformGroup>
<ScaleTransform/>
<SkewTransform/>
<RotateTransform Angle="90.167"/>
<TranslateTransform/>
</TransformGroup>
</Image.RenderTransform>
</Image>
<Image Height="58" Canvas.Left="515" Width="52" Source="/HHECS;component/Content/image/箭头.png" Canvas.Top="14"/>
<Image Height="58" Canvas.Left="389" Canvas.Top="202" Width="52" Source="/HHECS;component/Content/image/箭头.png" RenderTransformOrigin="0.5,0.5">
<Image.RenderTransform>
<TransformGroup>
<ScaleTransform/>
<SkewTransform/>
<RotateTransform Angle="179.882"/>
<TranslateTransform/>
</TransformGroup>
</Image.RenderTransform>
</Image>
<Image Height="58" Canvas.Left="359" Canvas.Top="97" Width="52" Source="/HHECS;component/Content/image/箭头.png" RenderTransformOrigin="0.5,0.5">
<Image.RenderTransform>
<TransformGroup>
<ScaleTransform/>
<SkewTransform/>
<RotateTransform Angle="-89.526"/>
<TranslateTransform/>
</TransformGroup>
</Image.RenderTransform>
</Image>
<Image Height="58" Canvas.Left="388" Width="52" Source="/HHECS;component/Content/image/箭头.png" Canvas.Top="174"/>
<TextBlock Text="入库口" Canvas.Left="515" Canvas.Top="81" FontSize="20" Foreground="#FF293955"></TextBlock>
<TextBlock Text="拣选口" Canvas.Left="460" Canvas.Top="207" FontSize="20" Foreground="#FF293955"></TextBlock>
</Canvas>
</Viewbox>
</Grid>
</UserControl>