|
|
|
|
@ -2351,7 +2351,6 @@ FontSize="25" Width="160" Height="80" VerticalAlignment="Top" HorizontalAlignmen
|
|
|
|
|
<Border BorderBrush="White" BorderThickness="2" Grid.ColumnSpan="1" Grid.Column="4" Grid.RowSpan="2" Margin="20 0 0 0">
|
|
|
|
|
|
|
|
|
|
<StackPanel Orientation="Vertical" >
|
|
|
|
|
|
|
|
|
|
<TextBlock x:Name="OutOrder" Background="Transparent" Grid.ColumnSpan="2" Grid.RowSpan="2" VerticalAlignment="Top" HorizontalAlignment="Center"/>
|
|
|
|
|
<TextBlock x:Name="thisOutEndStation" Background="Transparent" Grid.ColumnSpan="2" Grid.RowSpan="2" VerticalAlignment="Top" HorizontalAlignment="Center" Margin="0,20,0,0"/>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
@ -2369,15 +2368,24 @@ FontSize="25" Width="160" Height="80" VerticalAlignment="Top" HorizontalAlignmen
|
|
|
|
|
<Border BorderBrush="White" BorderThickness="2" Grid.Column="0" Grid.ColumnSpan="6" Grid.Row="6" Grid.RowSpan="2" Margin="20">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<DataGrid Background="Transparent"
|
|
|
|
|
CanUserAddRows="False"
|
|
|
|
|
AutoGenerateColumns="False"
|
|
|
|
|
CanUserSortColumns="False"
|
|
|
|
|
Height="auto"
|
|
|
|
|
GridLinesVisibility="Horizontal"
|
|
|
|
|
CanUserDeleteRows="False"
|
|
|
|
|
CanUserReorderColumns="False"
|
|
|
|
|
CanUserResizeColumns="False"
|
|
|
|
|
<DataGrid Style="{StaticResource DataGridStyle}"
|
|
|
|
|
Grid.Row="2" AlternationCount="2"
|
|
|
|
|
AutoGenerateColumns="False"
|
|
|
|
|
MinRowHeight="50"
|
|
|
|
|
CanUserAddRows="False"
|
|
|
|
|
GridLinesVisibility="All"
|
|
|
|
|
CanUserReorderColumns="False"
|
|
|
|
|
CanUserResizeColumns="False"
|
|
|
|
|
CanUserResizeRows="False"
|
|
|
|
|
Focusable="False"
|
|
|
|
|
Height="auto"
|
|
|
|
|
HeadersVisibility="Column"
|
|
|
|
|
IsReadOnly="True"
|
|
|
|
|
LoadingRow="dgData_LoadingRow"
|
|
|
|
|
RowHeaderWidth="0"
|
|
|
|
|
SelectionMode="Single" FontSize="16"
|
|
|
|
|
Visibility="Visible"
|
|
|
|
|
VerticalAlignment="Top"
|
|
|
|
|
x:Name="OutTaskNumber" >
|
|
|
|
|
<DataGrid.Columns>
|
|
|
|
|
<DataGridTextColumn
|
|
|
|
|
@ -2412,6 +2420,12 @@ FontSize="25" Width="160" Height="80" VerticalAlignment="Top" HorizontalAlignmen
|
|
|
|
|
ElementStyle="{StaticResource dgCell}"
|
|
|
|
|
Width="*"
|
|
|
|
|
/>
|
|
|
|
|
<DataGridTextColumn
|
|
|
|
|
Header="目的地"
|
|
|
|
|
Binding="{Binding EndStationCodes}"
|
|
|
|
|
Width="*"
|
|
|
|
|
ElementStyle="{StaticResource dgCell}"
|
|
|
|
|
/>
|
|
|
|
|
<DataGridTextColumn
|
|
|
|
|
Header="是否出完"
|
|
|
|
|
Binding="{Binding isSendOver}"
|
|
|
|
|
@ -2433,7 +2447,7 @@ FontSize="25" Width="160" Height="80" VerticalAlignment="Top" HorizontalAlignmen
|
|
|
|
|
</DataGrid.Columns>
|
|
|
|
|
<DataGrid.CellStyle>
|
|
|
|
|
<Style TargetType="{x:Type DataGridCell}">
|
|
|
|
|
<Setter Property="Background" Value="Transparent" />
|
|
|
|
|
<Setter Property="Background" Value="#213269" />
|
|
|
|
|
<Setter Property="Foreground" Value="White" />
|
|
|
|
|
<Setter Property="HorizontalContentAlignment" Value="Center" />
|
|
|
|
|
</Style>
|
|
|
|
|
@ -2441,25 +2455,25 @@ FontSize="25" Width="160" Height="80" VerticalAlignment="Top" HorizontalAlignmen
|
|
|
|
|
</DataGrid.CellStyle>
|
|
|
|
|
<DataGrid.RowStyle>
|
|
|
|
|
<Style TargetType="{x:Type DataGridRow}">
|
|
|
|
|
<Setter Property="Background" Value="Transparent" />
|
|
|
|
|
<Setter Property="Background" Value="#213269" />
|
|
|
|
|
<Setter Property="Foreground" Value="White" />
|
|
|
|
|
<Setter Property="Height" Value="Auto" />
|
|
|
|
|
</Style>
|
|
|
|
|
</DataGrid.RowStyle>
|
|
|
|
|
<DataGrid.RowHeaderStyle>
|
|
|
|
|
<Style TargetType="{x:Type DataGridRowHeader}">
|
|
|
|
|
<Setter Property="Background" Value="#213269" />
|
|
|
|
|
<Setter Property="Foreground" Value="White" />
|
|
|
|
|
<Setter Property="HorizontalContentAlignment" Value="Center" />
|
|
|
|
|
</Style>
|
|
|
|
|
</DataGrid.RowHeaderStyle>
|
|
|
|
|
<DataGrid.ColumnHeaderStyle>
|
|
|
|
|
<Style TargetType="{x:Type DataGridColumnHeader}">
|
|
|
|
|
<Setter Property="Background" Value="Transparent" />
|
|
|
|
|
<Setter Property="Background" Value="#172560" />
|
|
|
|
|
<Setter Property="Foreground" Value="White" />
|
|
|
|
|
<Setter Property="HorizontalContentAlignment" Value="Center" />
|
|
|
|
|
<Setter Property="Margin" Value="0,0,0,0" />
|
|
|
|
|
<Setter Property="BorderThickness" Value="5" />
|
|
|
|
|
<Setter Property="BorderBrush" Value="Transparent" />
|
|
|
|
|
<Setter Property="BorderBrush" Value="#172540" />
|
|
|
|
|
<Setter Property="FontSize" Value="30" />
|
|
|
|
|
</Style>
|
|
|
|
|
</DataGrid.ColumnHeaderStyle>
|
|
|
|
|
@ -2766,7 +2780,7 @@ FontSize="25" Width="160" Height="80" VerticalAlignment="Top" HorizontalAlignmen
|
|
|
|
|
</TabItem>
|
|
|
|
|
<TabItem x:Name="PlcManager" Header="PLC信息" Style="{StaticResource DefaultItem}" FontSize="25" HorizontalContentAlignment="Center" VerticalContentAlignment="Center" Background="#213269" Foreground="White" Width="160" Height="80" Margin="5">
|
|
|
|
|
<StackPanel x:Name="splPlcMessage" Height="1060" Width="1729" Background="#213269" Canvas.Left="175" Canvas.Top="110" Orientation="Horizontal">
|
|
|
|
|
<StackPanel Orientation="Horizontal" Width="1750">
|
|
|
|
|
<StackPanel x:Name="PlcMessage" Orientation="Horizontal" Width="1750">
|
|
|
|
|
<StackPanel Orientation="Vertical" Margin="20,5,0,0">
|
|
|
|
|
<StackPanel Orientation="Horizontal" Margin="0">
|
|
|
|
|
<Image
|
|
|
|
|
@ -2788,7 +2802,7 @@ FontSize="25" Width="160" Height="80" VerticalAlignment="Top" HorizontalAlignmen
|
|
|
|
|
</Button>-->
|
|
|
|
|
</StackPanel>
|
|
|
|
|
<Border Background="#213269" BorderBrush="Silver" BorderThickness="2" CornerRadius="10" Width="700" Height="550" Margin="0,5,0,0">
|
|
|
|
|
<Grid>
|
|
|
|
|
<Grid x:Name="JBW">
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="1.5*"/>
|
|
|
|
|
<ColumnDefinition Width="2*"/>
|
|
|
|
|
@ -2836,7 +2850,7 @@ FontSize="25" Width="160" Height="80" VerticalAlignment="Top" HorizontalAlignmen
|
|
|
|
|
|
|
|
|
|
</Border>
|
|
|
|
|
<Border Background="#213269" BorderBrush="Silver" BorderThickness="2" CornerRadius="10" Width="700" Height="350" Margin="0,30,0,0">
|
|
|
|
|
<Grid>
|
|
|
|
|
<Grid x:Name="UXX">
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
|
|
<ColumnDefinition Width="2*"/>
|
|
|
|
|
@ -2871,7 +2885,7 @@ FontSize="25" Width="160" Height="80" VerticalAlignment="Top" HorizontalAlignmen
|
|
|
|
|
<RowDefinition Height="*"/>
|
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
<TextBlock Text="二楼小包出入口" Foreground="White" FontSize="35" VerticalAlignment="Center" HorizontalAlignment="Center"/>
|
|
|
|
|
<Grid Grid.Row="1">
|
|
|
|
|
<Grid Grid.Row="1" x:Name="XBRK">
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
|
|
@ -2912,7 +2926,7 @@ FontSize="25" Width="160" Height="80" VerticalAlignment="Top" HorizontalAlignmen
|
|
|
|
|
</Grid>
|
|
|
|
|
</Border>
|
|
|
|
|
<Border BorderBrush="White" Grid.Row="0" BorderThickness="2" CornerRadius="10" Margin="5">
|
|
|
|
|
<Grid>
|
|
|
|
|
<Grid x:Name="TSJ">
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
|
|
@ -2946,7 +2960,7 @@ FontSize="25" Width="160" Height="80" VerticalAlignment="Top" HorizontalAlignmen
|
|
|
|
|
<RowDefinition Height="*"/>
|
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
<TextBlock Text="三楼翻转机" Foreground="White" FontSize="35" VerticalAlignment="Center" HorizontalAlignment="Center"/>
|
|
|
|
|
<Grid Grid.Row="1">
|
|
|
|
|
<Grid Grid.Row="1" x:Name="FZJ">
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
|
|
|