|
|
@@ -76,12 +76,13 @@ |
|
|
|
|
|
|
|
<!-- 参数放置面板 --> |
|
|
|
<Grid Grid.Row="2"> |
|
|
|
<ItemsControl ItemsSource="{Binding parSets}"> |
|
|
|
<ItemsControl.ItemTemplate> |
|
|
|
<DataTemplate> |
|
|
|
<StackPanel Orientation="Horizontal"> |
|
|
|
<TextBlock Style="{StaticResource TextBlockStyle}" Text="{Binding TextBlockContext}" /> |
|
|
|
<TextBox |
|
|
|
<StackPanel Orientation="Horizontal"> |
|
|
|
<ItemsControl ItemsSource="{Binding parSets}"> |
|
|
|
<ItemsControl.ItemTemplate> |
|
|
|
<DataTemplate> |
|
|
|
<StackPanel Orientation="Horizontal"> |
|
|
|
<TextBlock Style="{StaticResource TextBlockStyle}" Text="{Binding TextBlockContext}" /> |
|
|
|
<TextBox |
|
|
|
Width="100" |
|
|
|
Margin="10,0,0,0" |
|
|
|
VerticalAlignment="Center" |
|
|
@@ -92,8 +93,8 @@ |
|
|
|
FontSize="21" |
|
|
|
Foreground="#ff34f7f7" |
|
|
|
Text="{Binding Minute}" /> |
|
|
|
<TextBlock Style="{StaticResource TextBlockStyle}" Text="(分)" /> |
|
|
|
<TextBox |
|
|
|
<TextBlock Style="{StaticResource TextBlockStyle}" Text="(分)" /> |
|
|
|
<TextBox |
|
|
|
Width="100" |
|
|
|
Margin="0,10" |
|
|
|
VerticalAlignment="Center" |
|
|
@@ -104,9 +105,9 @@ |
|
|
|
FontSize="21" |
|
|
|
Foreground="#ff34f7f7" |
|
|
|
Text="{Binding Second}" /> |
|
|
|
<TextBlock Style="{StaticResource TextBlockStyle}" Text="(秒)" /> |
|
|
|
<TextBlock Style="{StaticResource TextBlockStyle}" Text="(秒)" /> |
|
|
|
|
|
|
|
<CheckBox |
|
|
|
<CheckBox |
|
|
|
Height="20" |
|
|
|
Margin="10" |
|
|
|
VerticalAlignment="Center" |
|
|
@@ -117,10 +118,133 @@ |
|
|
|
IsChecked="{Binding IsShield}" |
|
|
|
Template="{StaticResource CbTemplate}" /> |
|
|
|
|
|
|
|
</StackPanel> |
|
|
|
</DataTemplate> |
|
|
|
</ItemsControl.ItemTemplate> |
|
|
|
</ItemsControl> |
|
|
|
</StackPanel> |
|
|
|
</DataTemplate> |
|
|
|
</ItemsControl.ItemTemplate> |
|
|
|
</ItemsControl> |
|
|
|
<Grid> |
|
|
|
<Grid.RowDefinitions> |
|
|
|
<RowDefinition Height="50" /> |
|
|
|
<RowDefinition /> |
|
|
|
</Grid.RowDefinitions> |
|
|
|
|
|
|
|
<Grid |
|
|
|
Grid.Row="0" |
|
|
|
Margin="100,10,0,0" |
|
|
|
Background="#ff0C255F"> |
|
|
|
|
|
|
|
<Grid.ColumnDefinitions> |
|
|
|
<ColumnDefinition /> |
|
|
|
<ColumnDefinition /> |
|
|
|
<ColumnDefinition /> |
|
|
|
</Grid.ColumnDefinitions> |
|
|
|
|
|
|
|
<TextBlock |
|
|
|
Grid.Column="0" |
|
|
|
FontSize="24" |
|
|
|
Style="{StaticResource TitleTextblockStyle}" |
|
|
|
Text="库位序号" /> |
|
|
|
|
|
|
|
<TextBlock |
|
|
|
Grid.Column="1" |
|
|
|
FontSize="24" |
|
|
|
Style="{StaticResource TitleTextblockStyle}" |
|
|
|
Text="煮时间(分)" /> |
|
|
|
|
|
|
|
<TextBlock |
|
|
|
Grid.Column="2" |
|
|
|
FontSize="24" |
|
|
|
Style="{StaticResource TitleTextblockStyle}" |
|
|
|
Text="煮时间(秒)" /> |
|
|
|
|
|
|
|
<Border |
|
|
|
Grid.Column="0" |
|
|
|
Grid.ColumnSpan="4" |
|
|
|
BorderBrush="{StaticResource bordColor}" |
|
|
|
BorderThickness="1,1,1,1" /> |
|
|
|
<Border |
|
|
|
Grid.Column="1" |
|
|
|
BorderBrush="{StaticResource bordColor}" |
|
|
|
BorderThickness="1,0,1,0" /> |
|
|
|
<Border |
|
|
|
Grid.Column="3" |
|
|
|
BorderBrush="{StaticResource bordColor}" |
|
|
|
BorderThickness="1,0,1,0" /> |
|
|
|
|
|
|
|
|
|
|
|
</Grid> |
|
|
|
<Grid Grid.Row="1" Margin="100,0,0,0"> |
|
|
|
<ScrollViewer HorizontalScrollBarVisibility="Hidden" VerticalScrollBarVisibility="Hidden"> |
|
|
|
<ItemsControl Foreground="DeepSkyBlue" ItemsSource="{Binding DishLibraryParSets}"> |
|
|
|
<ItemsControl.ItemTemplate> |
|
|
|
<DataTemplate> |
|
|
|
<Grid Name="gr"> |
|
|
|
<Grid.ColumnDefinitions> |
|
|
|
<ColumnDefinition Width="157"/> |
|
|
|
<ColumnDefinition Width="1*"/> |
|
|
|
<ColumnDefinition Width="1*"/> |
|
|
|
</Grid.ColumnDefinitions> |
|
|
|
|
|
|
|
<TextBlock |
|
|
|
Grid.Column="0" |
|
|
|
HorizontalAlignment="Center" |
|
|
|
VerticalAlignment="Center" |
|
|
|
FontSize="18" |
|
|
|
Text="{Binding TextBlockContext}" /> |
|
|
|
|
|
|
|
<!--<ComboBox |
|
|
|
Grid.Column="1" |
|
|
|
Height="auto" |
|
|
|
Background="Transparent" |
|
|
|
BorderThickness="0" |
|
|
|
FontSize="18" |
|
|
|
Foreground="DeepSkyBlue" |
|
|
|
IsEditable="False" |
|
|
|
ItemsSource="{Binding DataContext.DishTypeName, RelativeSource={RelativeSource AncestorType=ItemsControl, Mode=FindAncestor}}" |
|
|
|
SelectedIndex="{Binding LocDishType}" />--> |
|
|
|
|
|
|
|
<Border |
|
|
|
Grid.Column="0" |
|
|
|
Grid.ColumnSpan="3" |
|
|
|
BorderBrush="{StaticResource bordColor}" |
|
|
|
BorderThickness="1,0,1,1"></Border> |
|
|
|
|
|
|
|
<Border |
|
|
|
Grid.Column="1" |
|
|
|
BorderBrush="{StaticResource bordColor}" |
|
|
|
BorderThickness="1,0,1,0"> |
|
|
|
<TextBox |
|
|
|
Grid.Column="1" |
|
|
|
FontSize="18" |
|
|
|
Style="{StaticResource InputTextboxStyle}" |
|
|
|
Text="{Binding Minute}" /> |
|
|
|
</Border> |
|
|
|
|
|
|
|
<Border |
|
|
|
Grid.Column="2" |
|
|
|
BorderBrush="{StaticResource bordColor}" |
|
|
|
BorderThickness="1,0,1,0"> |
|
|
|
<TextBox |
|
|
|
Grid.Column="2" |
|
|
|
FontSize="18" |
|
|
|
Style="{StaticResource InputTextboxStyle}" |
|
|
|
Text="{Binding Second}" /> |
|
|
|
</Border> |
|
|
|
</Grid> |
|
|
|
|
|
|
|
<DataTemplate.Triggers> |
|
|
|
<Trigger Property="IsMouseOver" Value="true"> |
|
|
|
<Setter TargetName="gr" Property="Background" Value="#112AB2E7" /> |
|
|
|
</Trigger> |
|
|
|
</DataTemplate.Triggers> |
|
|
|
</DataTemplate> |
|
|
|
</ItemsControl.ItemTemplate> |
|
|
|
</ItemsControl> |
|
|
|
</ScrollViewer> |
|
|
|
</Grid> |
|
|
|
</Grid> |
|
|
|
</StackPanel> |
|
|
|
|
|
|
|
|
|
|
|
</Grid> |
|
|
|
|
|
|
|