Files
6098/Cowain.Bake.Main/Views/ManualTask.xaml

18 lines
1.6 KiB
XML

<Window x:Class="Cowain.Bake.Main.Views.ManualTask"
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:Cowain.Bake.Main.Views"
mc:Ignorable="d"
Title="手动任务" Height="300" Width="380" WindowStartupLocation="CenterScreen">
<Grid>
<Label Content="取:" Style="{StaticResource BaseStyle}" HorizontalContentAlignment="Right" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="40,60,0,0" Width="30"/>
<Label Content="放:" Style="{StaticResource BaseStyle}" HorizontalContentAlignment="Right" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="40,136,0,0" Width="30"/>
<TextBox FontWeight="Bold" Foreground="Black" IsReadOnly="True" Text="{Binding SelectFromValue,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}" HorizontalAlignment="Left" Margin="75,60,0,0" VerticalAlignment="Top" Width="215"/>
<ComboBox ItemsSource="{Binding StationDtl}" SelectedValue="{Binding SelectToValue,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}" HorizontalAlignment="Left" Margin="80,131,0,0" VerticalAlignment="Top" Width="210"/>
<Button Content="生成任务" Command="{Binding GenerateTaskCommand}" Style="{StaticResource ButtonInfo}" HorizontalAlignment="Left" Height="35" Margin="80,195,0,0" VerticalAlignment="Top" Width="210"/>
</Grid>
</Window>