123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- <UserControl
- x:Class="FurnaceUI.Views.Editors.RecipeHeaderView"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:cal="http://www.caliburn.org"
- xmlns:converter="clr-namespace:FurnaceUI.Converter"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- Width="740"
- Height="600"
- FontFamily="Segoe"
- mc:Ignorable="d">
- <UserControl.Resources>
- <converter:IsCheckShowStringConverter x:Key="isCheckShowStringConverter"/>
- </UserControl.Resources>
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="*"/>
- <RowDefinition Height="80"/>
- </Grid.RowDefinitions>
- <DockPanel>
- <Canvas>
- <GroupBox
- Canvas.Left="90"
- Canvas.Top="20"
- Header="Range Check">
- <Grid Width="550" Height="115">
- <Grid.RowDefinitions>
- <RowDefinition/>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="0.7*"/>
- <ColumnDefinition Width="1.3*"/>
- </Grid.ColumnDefinitions>
- <TextBlock
- Margin="20,0,0,0"
- VerticalAlignment="Center"
- Text="Range Check"/>
- <TextBlock
- Grid.Row="1"
- Margin="20,0,0,0"
- VerticalAlignment="Center"
- Text="Table Number"/>
- <TextBox
- Grid.Row="0"
- Grid.RowSpan="2"
- Grid.Column="1"
- Width="300"
- Height="50"
- IsEnabled="False"
- Text="Not Select"/>
- </Grid>
- </GroupBox>
- <GroupBox
- Canvas.Left="90"
- Canvas.Top="350"
- Header="Special Sequence">
- <Grid Width="550" Height="115">
- <Grid.RowDefinitions>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="0.7*"/>
- <ColumnDefinition Width="1.3*"/>
- </Grid.ColumnDefinitions>
- <TextBlock
- Margin="20,0,0,0"
- VerticalAlignment="Center"
- Text="H20 Type"/>
- <TextBox
- Grid.Row="0"
- Grid.Column="1"
- Width="300"
- Height="50"
- IsEnabled="False"
- Text="None"/>
- </Grid>
- </GroupBox>
- <GroupBox
- Canvas.Left="90"
- Canvas.Top="180"
- Header="N2 Purge">
- <Grid Width="550" Height="115">
- <Grid.RowDefinitions>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="0.7*"/>
- <ColumnDefinition Width="1.3*"/>
- </Grid.ColumnDefinitions>
- <TextBlock
- Margin="20,0,0,0"
- VerticalAlignment="Center"
- Text="N2 Purge Mode"/>
- <ComboBox
- Grid.Row="0"
- Grid.Column="1"
- Width="300"
- Height="50"
- Text="{Binding CmbN2Purge}">
- <ListBoxItem Content="None"/>
- <ListBoxItem Content="N2 Purge"/>
- <ListBoxItem Content="ATM"/>
- </ComboBox>
- </Grid>
- </GroupBox>
- </Canvas>
- </DockPanel>
- <Border Grid.Row="2">
- <Grid>
- <Canvas>
- <Button
- Canvas.Left="406"
- Canvas.Top="19"
- Width="130"
- Height="45"
- Content="Save"
- IsEnabled="{Binding IsEnable}"
- Style="{StaticResource CommandButton}">
- <i:Interaction.Triggers>
- <i:EventTrigger EventName="Click">
- <cal:ActionMessage MethodName="TempSetSave"/>
- </i:EventTrigger>
- </i:Interaction.Triggers>
- </Button>
- <Button
- Canvas.Left="556"
- Canvas.Top="19"
- Width="130"
- Height="45"
- Content="Close"
- Style="{StaticResource CommandButton}">
- <i:Interaction.Triggers>
- <i:EventTrigger EventName="Click">
- <cal:ActionMessage MethodName="TempSetCancel"/>
- </i:EventTrigger>
- </i:Interaction.Triggers>
- </Button>
- </Canvas>
- </Grid>
- </Border>
- </Grid>
- </UserControl>
|