TaskStateChangexaml.xaml
2.12 KB
<Window x:Class="HH_WCS_Standard.Page.HandView.TaskStateChangexaml"
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:HH_WCS_Standard.Page.HandView"
xmlns:viewmodel="clr-namespace:HH_WCS_Standard"
mc:Ignorable="d"
Background="#2B2833"
Title="任务状态修改" Height="222" Width="244">
<Window.Resources>
<viewmodel:TaskStateConverter x:Key="TaskStateConverter"></viewmodel:TaskStateConverter>
<viewmodel:TaskTypeConverter x:Key="TaskTypeConverter"></viewmodel:TaskTypeConverter>
<viewmodel:DeviceConverter x:Key="DeviceConverter"></viewmodel:DeviceConverter>
<viewmodel:PoseTypeByNameConverter x:Key="PoseTypeConverter"></viewmodel:PoseTypeByNameConverter>
</Window.Resources>
<Grid>
<TextBox HorizontalAlignment="Left" Height="23" Margin="85,20,0,0" TextWrapping="Wrap" Text="" VerticalAlignment="Top" Width="120" Name="taskno" IsEnabled="False" />
<TextBox HorizontalAlignment="Left" Height="23" Margin="85,62,0,0" TextWrapping="Wrap" Text="" VerticalAlignment="Top" Width="120" Name="nowstate" IsEnabled="False" />
<ComboBox HorizontalAlignment="Left" Margin="85,105,0,0" VerticalAlignment="Top" Width="120" Name="changestate" />
<Label Content="任务号" HorizontalAlignment="Left" Margin="10,20,0,0" VerticalAlignment="Top" Height="25" Width="70" Foreground="#fff" />
<Label Content="修改后状态" HorizontalAlignment="Left" Margin="10,105,0,0" VerticalAlignment="Top" Height="25" Width="70" Foreground="#fff" />
<Label Content="当前状态" HorizontalAlignment="Left" Margin="10,60,0,0" VerticalAlignment="Top" Height="25" Width="65" Foreground="#fff" />
<Button Content="修改" HorizontalAlignment="Left" Margin="60,155,0,0" VerticalAlignment="Top" Width="105" Background="#2B2833" Foreground="#fff" Click="Button_Click" />
</Grid>
</Window>