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.
61 lines
3.5 KiB
XML
61 lines
3.5 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="450" Width="800">
|
|
<Grid Margin="50,50">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition/>
|
|
<RowDefinition/>
|
|
<RowDefinition/>
|
|
<RowDefinition/>
|
|
</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="Right" 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>
|
|
</Grid>
|
|
</Window>
|