HandTask.xaml 1.95 KB
<Page
    x:Class="HH_WCS_Standard.HandTask"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d" Background="#2B2833"
    Title="HandTask" Loaded="DMSkinWindow_Loaded"
    Width="600">
    <ScrollViewer Style="{StaticResource DMScrollViewer}" HorizontalScrollBarVisibility="Disabled" Padding="10">
        <StackPanel>
            <TextBlock Text="下发手动任务" FontSize="22" Margin="10,10" Foreground="#fff"></TextBlock>
            <UniformGrid Columns="3">
                <StackPanel>
                    <TextBlock Text="选择任务类型" FontSize="13" Margin="10,20" Foreground="#fff" Width="110" />
                    <ComboBox Width="124" x:Name="Comm_TaskType" FontSize="13" Margin="10,10" />
                    <TextBlock Text="输入条码" FontSize="13" Margin="10,20" Foreground="#fff" Width="110" />
                    <TextBox x:Name="pallet" Margin="10,10" TextWrapping="Wrap"  Width="126" FontSize="20" />
                </StackPanel>
                <StackPanel>
                    <TextBlock Text="输入起点" FontSize="13" Margin="10,20" Foreground="#fff" Width="110" />
                    <TextBox x:Name="from" Margin="10,10" TextWrapping="Wrap"  Width="126" FontSize="20" />
                    <TextBlock Text="输入终点" FontSize="13" Margin="10,20" Foreground="#fff" Width="110" />
                    <TextBox x:Name="to" Margin="10,10" TextWrapping="Wrap"  Width="126" FontSize="20" />
                </StackPanel>
                <StackPanel>
                    <Button Style="{StaticResource AduButton}" Content="下发任务" FontWeight="Light" Background="Transparent" Click="Button_Click" />
                </StackPanel>
            </UniformGrid>
        </StackPanel>
    </ScrollViewer>
</Page>