|
|
|
|
@ -5,7 +5,7 @@
|
|
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
|
|
xmlns:local="clr-namespace:XGL.Views"
|
|
|
|
|
mc:Ignorable="d"
|
|
|
|
|
d:DesignHeight="450" d:DesignWidth="800" Loaded="UserControl_Loaded">
|
|
|
|
|
d:DesignHeight="450" d:DesignWidth="800" Loaded="UserControl_Loaded">
|
|
|
|
|
<UserControl.Resources>
|
|
|
|
|
<Style x:Key="ApplicantList_ListBox_Style" TargetType="{x:Type ListBox}">
|
|
|
|
|
<Setter Property="Background" Value="#00000000"/>
|
|
|
|
|
@ -29,7 +29,22 @@
|
|
|
|
|
</Setter.Value>
|
|
|
|
|
</Setter>
|
|
|
|
|
</Style>
|
|
|
|
|
<Style x:Key="btnKey" TargetType="Button">
|
|
|
|
|
<Setter Property="Width" Value="150" />
|
|
|
|
|
<Setter Property="Height" Value="60" />
|
|
|
|
|
<Setter Property="Margin" Value="5.5"/>
|
|
|
|
|
<Setter Property="HorizontalContentAlignment" Value="Center"/>
|
|
|
|
|
<Setter Property="Template" >
|
|
|
|
|
<Setter.Value>
|
|
|
|
|
<ControlTemplate TargetType="Button">
|
|
|
|
|
<Border Background="#2B7EE6" BorderThickness="2" CornerRadius="10">
|
|
|
|
|
<ContentPresenter HorizontalAlignment="Center" VerticalAlignment="Center"/>
|
|
|
|
|
</Border>
|
|
|
|
|
</ControlTemplate>
|
|
|
|
|
|
|
|
|
|
</Setter.Value>
|
|
|
|
|
</Setter>
|
|
|
|
|
</Style>
|
|
|
|
|
|
|
|
|
|
<Style x:Key="ApplicantList_ListBoxItem_Style" TargetType="{x:Type ListBoxItem}">
|
|
|
|
|
<Setter Property="Margin" Value="10,10,10,0" />
|
|
|
|
|
@ -455,6 +470,17 @@
|
|
|
|
|
FontSize="20"
|
|
|
|
|
Foreground="White"
|
|
|
|
|
Click="btnViewPlcvalue_Click" Content="查看Plc值"></Button>
|
|
|
|
|
<Button
|
|
|
|
|
x:Name="HFPlcvalue"
|
|
|
|
|
Width="120"
|
|
|
|
|
Height="40"
|
|
|
|
|
Margin="25,5"
|
|
|
|
|
HorizontalAlignment="Right"
|
|
|
|
|
VerticalAlignment="Center"
|
|
|
|
|
Background="#2B7EE6"
|
|
|
|
|
FontSize="20"
|
|
|
|
|
Foreground="White"
|
|
|
|
|
Click="HFPlcvalue_Click" Content="查看烘房值"></Button>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
<!--ItemContainerStyle="{DynamicResource ApplicantList_ListBoxItem_Style}"-->
|
|
|
|
|
|