| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- <UserControl x:Class="SummaryModule.Pops.Main.RecipeCommand"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:SummaryModule.Pops.Main"
- mc:Ignorable="d"
- d:DesignHeight="450" d:DesignWidth="800">
- <UserControl.Resources>
- <ResourceDictionary >
- <ResourceDictionary.MergedDictionaries>
- <ResourceDictionary Source="/UICommon;component/Resources.xaml"/>
- </ResourceDictionary.MergedDictionaries>
- </ResourceDictionary>
- </UserControl.Resources>
- <Grid Margin="16">
- <Grid.ColumnDefinitions>
- <ColumnDefinition/>
- <ColumnDefinition Width="64"/>
- <ColumnDefinition/>
- <ColumnDefinition Width="64"/>
- <ColumnDefinition/>
- </Grid.ColumnDefinitions>
- <Border BorderBrush="{StaticResource DarkBorderColor}" BorderThickness="1">
- <Grid Margin="8">
- <Grid.RowDefinitions>
- <RowDefinition/>
- <RowDefinition Height="16"/>
- <RowDefinition/>
- <RowDefinition Height="16"/>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <Button Style="{StaticResource FunctionButton}" Height="96" Margin="8,0">
- <StackPanel>
- <TextBlock FontSize="32" HorizontalAlignment="Center">Abort</TextBlock>
- <TextBlock FontSize="14" HorizontalAlignment="Center">Abort Recipe begins</TextBlock>
- <TextBlock FontSize="14" HorizontalAlignment="Center">And mode shifts to abort</TextBlock>
- </StackPanel>
- </Button>
- <Border BorderBrush="{StaticResource DarkBorderColor}" BorderThickness="1" Grid.Row="2">
- <StackPanel>
- <Button Style="{StaticResource FunctionButton}" Margin="8" Height="96">
- <StackPanel>
- <TextBlock FontSize="32" HorizontalAlignment="Center">Idel</TextBlock>
- <TextBlock FontSize="14" HorizontalAlignment="Center">Idle recipe begins</TextBlock>
- <TextBlock FontSize="14" HorizontalAlignment="Center">Mode shifts to idel</TextBlock>
- </StackPanel>
- </Button>
- <Button Style="{StaticResource FunctionButton}" Margin="8" Height="96">
- <StackPanel>
- <TextBlock FontSize="32" HorizontalAlignment="Center">Standby</TextBlock>
- <TextBlock FontSize="14" HorizontalAlignment="Center">Mode shifts to abort</TextBlock>
- </StackPanel>
- </Button>
- </StackPanel>
- </Border>
- <Border BorderBrush="{StaticResource DarkBorderColor}" BorderThickness="1" Grid.Row="4">
- <StackPanel>
- <Button Style="{StaticResource FunctionButton}" Margin="8" Height="96">
- <StackPanel>
- <TextBlock FontSize="32" HorizontalAlignment="Center">Start</TextBlock>
- <TextBlock FontSize="14" HorizontalAlignment="Center">Process recipe begins</TextBlock>
- </StackPanel>
- </Button>
- <Button Style="{StaticResource FunctionButton}" Margin="8" Height="96">
- <StackPanel>
- <TextBlock FontSize="32" HorizontalAlignment="Center">Standby</TextBlock>
- <TextBlock FontSize="14" HorizontalAlignment="Center">End step begins</TextBlock>
- </StackPanel>
- </Button>
- </StackPanel>
- </Border>
- </Grid>
- </Border>
- <UniformGrid Grid.Column="2" Columns="1">
- <Border BorderBrush="{StaticResource DarkBorderColor}" BorderThickness="1" Height="96">
- <TextBlock VerticalAlignment="Center" HorizontalAlignment="Center" FontSize="24">Unknow</TextBlock>
- </Border>
- <Button Style="{StaticResource FunctionButton}" Margin="8" Height="96" IsEnabled="False">
- <StackPanel>
- <TextBlock FontSize="32" HorizontalAlignment="Center">Reset</TextBlock>
- <TextBlock FontSize="14" HorizontalAlignment="Center">Reset recipe begins</TextBlock>
- <TextBlock FontSize="14" HorizontalAlignment="Center">Mode shifts to reset</TextBlock>
- </StackPanel>
- </Button>
- <Button Style="{StaticResource FunctionButton}" Margin="8" Height="96" >
- <StackPanel>
- <TextBlock FontSize="32" HorizontalAlignment="Center">Hold</TextBlock>
- <TextBlock FontSize="14" HorizontalAlignment="Center">Recipe will holds at current step</TextBlock>
- </StackPanel>
- </Button>
- <Button Style="{StaticResource FunctionButton}" Margin="8" Height="96">
- <StackPanel>
- <TextBlock FontSize="32" HorizontalAlignment="Center">Skip</TextBlock>
- <TextBlock FontSize="14" HorizontalAlignment="Center">Jump into next step</TextBlock>
- </StackPanel>
- </Button>
- </UniformGrid>
- <UniformGrid Grid.Column="4" Columns="1">
- <Button Style="{StaticResource FunctionButton}" Margin="8" Height="96" Command="{Binding CloseCommand}">
- <StackPanel>
- <TextBlock FontSize="32" HorizontalAlignment="Center">Close</TextBlock>
- </StackPanel>
- </Button>
- <Button Style="{StaticResource FunctionButton}" Margin="8" Height="96" IsEnabled="False">
- <StackPanel>
- <TextBlock FontSize="32" HorizontalAlignment="Center">Manual</TextBlock>
- <TextBlock FontSize="14" HorizontalAlignment="Center">Equipment will driven with the manual</TextBlock>
- </StackPanel>
- </Button>
- <Button Style="{StaticResource FunctionButton}" Margin="8" Height="96" IsEnabled="False">
- <StackPanel>
- <TextBlock FontSize="32" HorizontalAlignment="Center">Release</TextBlock>
- <TextBlock FontSize="14" HorizontalAlignment="Center">Release the Hold</TextBlock>
- </StackPanel>
- </Button>
- <Button Style="{StaticResource FunctionButton}" Margin="8" Height="96">
- <StackPanel>
- <TextBlock FontSize="32" HorizontalAlignment="Center">Jump</TextBlock>
- <TextBlock FontSize="14" HorizontalAlignment="Center">Jump to a specified step</TextBlock>
- </StackPanel>
- </Button>
- </UniformGrid>
- </Grid>
- </UserControl>
|