HandSrmTaskRevert.xaml 2.56 KB
<Page
    x:Class="HH_WCS_Standard.HandSrmTaskRevert"
    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"
    xmlns:dmskin="clr-namespace:DMSkin;assembly=DMSkin"
    mc:Ignorable="d" Background="#2B2833"
    Width="500"
    Title="HandSrmTaskRevert" Loaded="DMSkinWindow_Loaded">

    <ScrollViewer Style="{StaticResource DMScrollViewer}" HorizontalScrollBarVisibility="Disabled" Padding="10">
        <StackPanel>
            <TextBlock Text="堆垛机任务恢复" FontSize="22" Margin="10,10" Foreground="#fff"></TextBlock>
            <UniformGrid Columns="2">
                <StackPanel>
                    <!--<TextBlock Text="选择设备编号" FontSize="13" Margin="10,20" Foreground="#fff" Width="110" />
                    <ComboBox Width="124" x:Name="Comm_Device" FontSize="13" />-->
                </StackPanel>
                <StackPanel>
                    <Button Name="btnReq" Style="{StaticResource AduButton}" Content="重新下发任务" FontWeight="Light" Background="Transparent" Click="btn_Click" CommandParameter="Req" />
                    <Button Name="btnReqFinish" Style="{StaticResource AduButton}" Content="完成当前任务" FontWeight="Light" Background="Transparent" Click="btn_Click" CommandParameter="Finish" />
                    <Button Name="btnEmptyOut" Style="{StaticResource AduButton}" Content="空出处理" FontWeight="Light" Background="Transparent" Click="btn_Click" CommandParameter="EmptyOut" />
                    <Button Name="btnFullIn" Style="{StaticResource AduButton}" Content="满入处理" FontWeight="Light" Background="Transparent" Click="btn_Click" CommandParameter="FullIn" />
                    <Button Name="btnDel" Style="{StaticResource AduButton}" Content="删除任务" FontWeight="Light" Background="Transparent" Click="btn_Click" CommandParameter="Del" />
                    <!--
                    <Button Name="btnContinue" Style="{StaticResource AduButton}" Content="继续当前任务" FontWeight="Light" Background="Transparent" Click="btn_Click" CommandParameter="Continue" />-->
                    <!--<Button Name="btnTakeErr" Style="{StaticResource AduButton}" Content="取货错处理" FontWeight="Light" Background="Transparent" Click="btn_Click" CommandParameter="TakeErr" />-->
                    
                </StackPanel>
            </UniformGrid>
        </StackPanel>
    </ScrollViewer>
</Page>