You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
90 lines
5.3 KiB
XML
90 lines
5.3 KiB
XML
<Window x:Class="SlnMesnac.RfidUpload.UI.containerStorageQueryByCsb"
|
|
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:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:local="clr-namespace:SlnMesnac.RfidUpload.UI"
|
|
mc:Ignorable="d"
|
|
Title="新容器入库" Height="750" Width="800">
|
|
<Grid Margin="50,50">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition/>
|
|
<RowDefinition/>
|
|
<RowDefinition/>
|
|
<RowDefinition/>
|
|
<RowDefinition Height="4*"/>
|
|
</Grid.RowDefinitions>
|
|
<StackPanel Grid.Row="0" Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
|
|
<TextBlock Text="调拨单号:" FontSize="16" FontWeight="Black" Foreground="#006699" Margin="10,0,0,0"/>
|
|
<TextBox Text="{Binding dbbh}" FontSize="16" Grid.Row="1" Width="300" Height="30" VerticalContentAlignment="Center" HorizontalAlignment="Center" Padding="5">
|
|
<TextBox.Template>
|
|
<ControlTemplate TargetType="TextBox">
|
|
<Border Background="#EBF4FD" BorderBrush="White" BorderThickness="1" CornerRadius="5">
|
|
<ScrollViewer x:Name="PART_ContentHost" />
|
|
</Border>
|
|
</ControlTemplate>
|
|
</TextBox.Template>
|
|
</TextBox>
|
|
</StackPanel>
|
|
|
|
<StackPanel Grid.Row="1" Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
|
|
<TextBlock Text="开始号段:" FontSize="16" FontWeight="Black" Foreground="#006699" Margin="10,0,0,0"/>
|
|
<TextBox Text="{Binding rqtmStart}" FontSize="16" Grid.Row="1" Width="300" Height="30" VerticalContentAlignment="Center" HorizontalAlignment="Center" Padding="5">
|
|
<TextBox.Template>
|
|
<ControlTemplate TargetType="TextBox">
|
|
<Border Background="#EBF4FD" BorderBrush="White" BorderThickness="1" CornerRadius="5">
|
|
<ScrollViewer x:Name="PART_ContentHost" />
|
|
</Border>
|
|
</ControlTemplate>
|
|
</TextBox.Template>
|
|
</TextBox>
|
|
</StackPanel>
|
|
|
|
<StackPanel Grid.Row="2" Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
|
|
<TextBlock Text="结束号段:" FontSize="16" FontWeight="Black" Foreground="#006699" Margin="10,0,0,0"/>
|
|
<TextBox Text="{Binding rqtmEnd}" FontSize="16" Grid.Row="1" Width="300" Height="30" VerticalContentAlignment="Center" HorizontalAlignment="Center" Padding="5">
|
|
<TextBox.Template>
|
|
<ControlTemplate TargetType="TextBox">
|
|
<Border Background="#EBF4FD" BorderBrush="White" BorderThickness="1" CornerRadius="5">
|
|
<ScrollViewer x:Name="PART_ContentHost" />
|
|
</Border>
|
|
</ControlTemplate>
|
|
</TextBox.Template>
|
|
</TextBox>
|
|
</StackPanel>
|
|
|
|
<StackPanel Grid.Row="3" Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
|
|
<Button Content="确定" Command="{Binding SubmitCommand}" Style="{StaticResource BUTTON_AGREE}" Width="80" Height="30" Background="#007DFA" BorderBrush="#007DFA" Margin="10,0,10,0"/>
|
|
|
|
</StackPanel>
|
|
|
|
<DataGrid Grid.Row="4" Name="DG" ItemsSource="{Binding TrackNoItems}" Background="Transparent"
|
|
FontSize="15" ColumnHeaderHeight="35"
|
|
RowHeight="31" AutoGenerateColumns="False" RowHeaderWidth="0"
|
|
GridLinesVisibility="None" ScrollViewer.HorizontalScrollBarVisibility="Visible"
|
|
ScrollViewer.VerticalScrollBarVisibility="Visible" BorderThickness="0" CanUserAddRows="False"
|
|
Foreground="#0288d1" >
|
|
<!--resourceStyle 399行修改选中字体颜色-->
|
|
<DataGrid.Columns>
|
|
|
|
<DataGridTextColumn Binding="{Binding dbdh}" Header="调拨单号" Width="3*" IsReadOnly="True"/>
|
|
<DataGridTextColumn Binding="{Binding trackNo}" Header="送货单号" Width="*" IsReadOnly="True"/>
|
|
|
|
<DataGridTemplateColumn Header="操作" Width="180">
|
|
<DataGridTemplateColumn.CellTemplate>
|
|
<DataTemplate>
|
|
|
|
<StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
|
|
<Button Content="新容器入库" Command="{Binding DataContext.ExecuteCommand, RelativeSource={RelativeSource AncestorType={x:Type DataGrid}}}" CommandParameter="{Binding}" Style="{StaticResource BUTTON_AGREE}" FontSize="14" Width="100" Height="30" Background="#009999" BorderBrush="#FF36B5C1" VerticalAlignment="Center" HorizontalAlignment="Center" Margin="0,0,5,0"/>
|
|
|
|
</StackPanel>
|
|
</DataTemplate>
|
|
</DataGridTemplateColumn.CellTemplate>
|
|
</DataGridTemplateColumn>
|
|
</DataGrid.Columns>
|
|
</DataGrid>
|
|
|
|
|
|
</Grid>
|
|
</Window>
|