|
@@ -0,0 +1,38 @@
|
|
|
+<UserControl x:Class="SCADA_DAQ.Plugin.Qilin.Uct.UctSpraySwitch1"
|
|
|
+ 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:SCADA_DAQ.Plugin.Qilin.Uct" xmlns:wpfcontrol="clr-namespace:SCADA.CommonCtrl.WpfControl;assembly=SCADA.CommonCtrl"
|
|
|
+ mc:Ignorable="d"
|
|
|
+ d:DesignHeight="450" d:DesignWidth="800">
|
|
|
+ <Grid>
|
|
|
+ <Grid>
|
|
|
+ <Grid.RowDefinitions>
|
|
|
+ <RowDefinition Height="1*"/>
|
|
|
+ <RowDefinition Height="1*"/>
|
|
|
+ <RowDefinition Height="1*"/>
|
|
|
+ <RowDefinition Height="1*"/>
|
|
|
+ </Grid.RowDefinitions>
|
|
|
+ <Grid.ColumnDefinitions>
|
|
|
+ <ColumnDefinition Width="1*"/>
|
|
|
+ <ColumnDefinition Width="1*"/>
|
|
|
+ <ColumnDefinition Width="1*"/>
|
|
|
+ </Grid.ColumnDefinitions>
|
|
|
+ <wpfcontrol:IconButton Title="胶枪1开关" Click="GlueGun1Switch" />
|
|
|
+ <wpfcontrol:IconButton Title="胶枪2开关" Click="GlueGun2Switch" Grid.Row="1"/>
|
|
|
+ <wpfcontrol:IconButton Title="胶枪3开关" Click="GlueGun3Switch" Grid.Row="2"/>
|
|
|
+ <wpfcontrol:IconButton Title="胶枪4开关" Click="GlueGun4Switch" Grid.Row="3"/>
|
|
|
+ <wpfcontrol:IconButton Title="喷胶测试" Click="SpraytTst" Grid.Column="1"/>
|
|
|
+ <wpfcontrol:IconButton Click="SprayTest2" Grid.Row="1" Grid.Column="1"/>
|
|
|
+ <wpfcontrol:IconButton Click="SprayTest3" Grid.Row="2" Grid.Column="1"/>
|
|
|
+ <wpfcontrol:IconButton Click="SprayTest4" Grid.Row="3" Grid.Column="1"/>
|
|
|
+ <wpfcontrol:IconButton Click="NozzleSpotCheck" Title="喷嘴点检" Grid.Row="0" Grid.Column="2"/>
|
|
|
+ <wpfcontrol:IconButton Click="NozzleSpotCheck1" Grid.Row="1" Grid.Column="2"/>
|
|
|
+ <wpfcontrol:IconButton Click="NozzleSpotCheck2" Grid.Row="2" Grid.Column="2"/>
|
|
|
+ <wpfcontrol:IconButton Click="NozzleSpotCheck3" Grid.Row="3" Grid.Column="2"/>
|
|
|
+ </Grid>
|
|
|
+
|
|
|
+
|
|
|
+ </Grid>
|
|
|
+</UserControl>
|