HandDeviceTask.xaml 1.95 KB
<Page
    x:Class="HH_WCS_Standard.HandDeviceTask"
    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"
    Title="HandDeviceTask"
    mc:Ignorable="d" Background="#2B2833"
    Width="500"
    Loaded="DMSkinWindow_Loaded">

    <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_Device" FontSize="13" Margin="10,10" />-->
                    <TextBlock Text="选择任务类型" FontSize="13" Margin="10,20" Foreground="#fff" Width="110" />
                    <ComboBox Width="124" x:Name="Comm" FontSize="13" Margin="10,10" />
                </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>