123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902 |
- <UserControl x:Class="FurnaceUI.Views.Operations.StatusView"
- 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:i="http://schemas.microsoft.com/expression/2010/interactivity"
- xmlns:cal="http://www.caliburn.org"
- xmlns:system="clr-namespace:System;assembly=mscorlib"
- xmlns:system1="http://schemas.microsoft.com/netfx/2009/xaml/presentation"
- xmlns:parts="clr-namespace:FurnaceUI.Controls.Parts" xmlns:deviceControl="clr-namespace:Aitex.Core.UI.DeviceControl;assembly=MECF.Framework.UI.Core"
- mc:Ignorable="d"
- d:DesignHeight="760" d:DesignWidth="1280" FontFamily="Segoe" Margin="0,-8,0,4">
- <UserControl.Resources>
- <system:Double x:Key="cassetteWidth">40</system:Double>
- <system1:Thickness x:Key="thickness">0,2,2,0</system1:Thickness>
- </UserControl.Resources>
- <Grid Margin="0,5,0,0" Background="White">
- <Grid.RowDefinitions>
- <RowDefinition Height="0.4*"/>
- <RowDefinition Height="0.6*"/>
- </Grid.RowDefinitions>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="0.5*"/>
- <ColumnDefinition Width="0.4*"/>
- </Grid.ColumnDefinitions>
- <Grid Grid.Row="0" Grid.Column="0">
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="0.4*"></ColumnDefinition>
- <ColumnDefinition Width="0.5*"></ColumnDefinition>
- </Grid.ColumnDefinitions>
- <Grid Grid.Column="0">
- <Button Grid.Row="0" Grid.Column="0" Margin="0,5,5,0" Padding="0" Style="{StaticResource MainArea_Button}" VerticalContentAlignment="Stretch" HorizontalContentAlignment="Stretch" >
- <ContentControl>
- <Canvas>
- <TextBlock Text="CJob " Canvas.Left="200" HorizontalAlignment="Center" Style="{StaticResource TextBlock_Title}" VerticalAlignment="Top" FontSize="16"/>
- <TextBlock Text="Job " Canvas.Left="60" HorizontalAlignment="Center" Style="{StaticResource TextBlock_Title}" VerticalAlignment="Top" FontSize="16"/>
- <Image Source="/FurnaceUI;component/Resources/images/icons/Elevator.png" Width="40" Canvas.Left="0" Canvas.Top="2"/>
- <Border Canvas.Left="90" Canvas.Top="25" Background="#DAE5F1" BorderBrush="Gray" BorderThickness="1,1,1,1" Margin="0" Width="177" Height="35">
- <TextBlock Text="{Binding ControlJobStatus, Mode=OneWay}" HorizontalAlignment="Center" VerticalAlignment="Center" IsEnabled="False"/>
- </Border>
- <Border BorderBrush="Gainsboro" BorderThickness="0,0,1,1" Canvas.Top="65" Canvas.Left="6">
- <Border BorderBrush="Gray" BorderThickness="1,1,1,1">
- <DockPanel Margin="1,1,0,0" Height="120" Width="265">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition/>
- <RowDefinition/>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="0.2*"/>
- <ColumnDefinition Width="0.1*"/>
- <ColumnDefinition Width="0.7*"/>
- </Grid.ColumnDefinitions>
- <Border BorderBrush="Gray" BorderThickness="1" Grid.Row="0" Grid.Column="0" >
- <TextBlock Style="{StaticResource TextBlock_Grid}" Text="1" FontSize="20" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <TextBlock Style="{StaticResource TextBlock_Grid_RightAlignment}" Grid.Row="0" Grid.Column="1" Text="ID"/>
- <TextBlock Style="{StaticResource TextBlock_Grid_RightAlignment}" Grid.Row="1" Grid.ColumnSpan="2" Text="Schedule End Time"/>
- <Border Grid.Row="0" Grid.Column="2" Background="#DAE5F1" BorderBrush="Gray" BorderThickness="1,1,1,1" Margin="4">
- <TextBlock Text="{Binding ProcessJob1ID, Mode=OneWay}" HorizontalAlignment="Center" VerticalAlignment="Center" IsEnabled="False" />
- </Border>
- <Border Grid.Row="1" Grid.Column="2" Background="#DAE5F1" BorderBrush="Gray" BorderThickness="1,1,1,1" Margin="4">
- <TextBlock Text="{Binding TotolProcessJob1EndTime, Mode=OneWay}" HorizontalAlignment="Center" VerticalAlignment="Center" IsEnabled="False" />
- </Border>
- <Border Grid.Row="2" Grid.ColumnSpan="3" Background="#DAE5F1" BorderBrush="Gray" BorderThickness="1,1,1,1" Margin="4">
- <TextBlock Text="{Binding ProcessJob1Status, Mode=OneWay}" HorizontalAlignment="Center" VerticalAlignment="Center" IsEnabled="False" />
- </Border>
- </Grid>
- </DockPanel>
- </Border>
- </Border>
- <Border BorderBrush="Gainsboro" BorderThickness="0,0,1,1" Canvas.Top="190" Canvas.Left="6">
- <Border BorderBrush="Gray" BorderThickness="1,1,1,1">
- <DockPanel Margin="1,1,0,0" Height="120" Width="265">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition/>
- <RowDefinition/>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="0.2*"/>
- <ColumnDefinition Width="0.1*"/>
- <ColumnDefinition Width="0.7*"/>
- </Grid.ColumnDefinitions>
- <Border BorderBrush="Gray" BorderThickness="1" Grid.Row="0" Grid.Column="0">
- <TextBlock Style="{StaticResource TextBlock_Grid}" Text="2" FontSize="20" HorizontalAlignment="Center" VerticalAlignment="Center"/>
- </Border>
- <TextBlock Style="{StaticResource TextBlock_Grid_RightAlignment}" Grid.Row="0" Grid.Column="1" Text="ID"/>
- <TextBlock Style="{StaticResource TextBlock_Grid_RightAlignment}" Grid.Row="1" Grid.ColumnSpan="2" Text="Schedule End Time"/>
- <Border Grid.Row="0" Grid.Column="2" Background="#DAE5F1" BorderBrush="Gray" BorderThickness="1,1,1,1" Margin="4">
- <TextBlock Text="{Binding ProcessJob2ID, Mode=OneWay}" HorizontalAlignment="Center" VerticalAlignment="Center" IsEnabled="False" />
- </Border>
- <Border Grid.Row="1" Grid.Column="2" Background="#DAE5F1" BorderBrush="Gray" BorderThickness="1,1,1,1" Margin="4">
- <TextBlock Text="{Binding TotolProcessJob2EndTime, Mode=OneWay}" HorizontalAlignment="Center" VerticalAlignment="Center" IsEnabled="False" />
- </Border>
- <Border Grid.Row="2" Grid.ColumnSpan="3" Background="#DAE5F1" BorderBrush="Gray" BorderThickness="1,1,1,1" Margin="4">
- <TextBlock Text="{Binding ProcessJob2Status, Mode=OneWay}" HorizontalAlignment="Center" VerticalAlignment="Center" IsEnabled="False" />
- </Border>
- </Grid>
- </DockPanel>
- </Border>
- </Border>
- </Canvas>
- </ContentControl>
- <i:Interaction.Triggers>
- <i:EventTrigger EventName="Click">
- <cal:ActionMessage MethodName="SwitchPage">
- <cal:Parameter Value="CJStatus"/>
- </cal:ActionMessage>
- </i:EventTrigger>
- </i:Interaction.Triggers>
- </Button>
- </Grid>
- <Grid Grid.Column="1">
- <Button Grid.Row="0" Grid.Column="0" Margin="0,5,5,0" Padding="0" Style="{StaticResource MainArea_Button}" VerticalContentAlignment="Stretch" HorizontalContentAlignment="Stretch" >
- <ContentControl>
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition/>
- <RowDefinition Height="45"/>
- </Grid.RowDefinitions>
- <Button Style="{StaticResource Transparent_Button}" VerticalContentAlignment="Stretch" HorizontalContentAlignment="Stretch" >
- <Canvas>
- <TextBlock Text="Recipe" Canvas.Left="50" HorizontalAlignment="Center" Style="{StaticResource TextBlock_Title}" VerticalAlignment="Top" FontSize="16"/>
- <TextBlock Text="{Binding HoldWaitDisplay}" Canvas.Left="280" HorizontalAlignment="Center" Style="{StaticResource TextBlock_Title}" VerticalAlignment="Top" FontSize="25"/>
- <Image Source="/FurnaceUI;component/Resources/images/icons/RecipeDetail44.png" Width="40" Canvas.Left="-5" Canvas.Top="2"/>
- <Grid Canvas.Top="40" Canvas.Left="0" Width="355">
- <Grid.RowDefinitions>
- <RowDefinition Height="65"/>
- <RowDefinition Height="65"/>
- <RowDefinition Height="65"/>
- <RowDefinition Height="38"/>
- </Grid.RowDefinitions>
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition/>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="0.4*"/>
- <ColumnDefinition Width="0.3*"/>
- <ColumnDefinition Width="0.3*"/>
- </Grid.ColumnDefinitions>
- <TextBlock Style="{StaticResource TextBlock_Grid}" Text="Process Recipe"/>
- <TextBlock Grid.Column="1" Style="{StaticResource TextBlock_Grid}" Text="Remain Time"/>
- <TextBlock Grid.Column="2" Style="{StaticResource TextBlock_Grid}" Text="{Binding PM1HoldName, Mode=OneWay}"/>
- <Border Grid.Row="1" Background="#DAE5F1" BorderBrush="Gray" BorderThickness="1,1,1,1" >
- <TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" Grid.Row="1" Text="{Binding PM1SelectedRecipeNameDisplay, Mode=OneWay}" ToolTip="{Binding PM1SelectedRecipeNameDisplay, Mode=OneWay}" ></TextBlock>
- </Border>
- <Border Grid.Row="1" Grid.Column="1" Background="#DAE5F1" BorderBrush="Gray" BorderThickness="0,1,1,1" >
- <TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" IsEnabled="False" Text="{Binding PM1RecipeTime, Mode=OneWay}" ></TextBlock>
- </Border>
- <Border Grid.Row="1" Grid.Column="2" Background="#DAE5F1" BorderBrush="Gray" BorderThickness="0,1,1,1" >
- <TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" IsEnabled="False" Text="{Binding PM1HoldTime, Mode=OneWay}" ></TextBlock>
- </Border>
- </Grid>
- <Grid Grid.Row="1">
- <Grid.RowDefinitions>
- <RowDefinition/>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="0.4*"/>
- <ColumnDefinition Width="0.3*"/>
- <ColumnDefinition Width="0.3*"/>
- </Grid.ColumnDefinitions>
- <TextBlock Style="{StaticResource TextBlock_Grid}" Text="Step Name"/>
- <TextBlock Grid.Column="1" Style="{StaticResource TextBlock_Grid}" Text="Remain Time"/>
- <TextBlock Grid.Column="2" Style="{StaticResource TextBlock_Grid}" Text="Next Step"/>
- <Border Grid.Row="1" Background="#DAE5F1" BorderBrush="Gray" BorderThickness="1,1,1,1" >
- <TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" IsEnabled="False" Text="{Binding PM1StepName, Mode=OneWay}" ></TextBlock>
- </Border>
- <Border Grid.Row="1" Grid.Column="1" Background="#DAE5F1" BorderBrush="Gray" BorderThickness="0,1,1,1" >
- <TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" IsEnabled="False" Text="{Binding PM1StepTime, Mode=OneWay}" ></TextBlock>
- </Border>
- <Border Grid.Row="1" Grid.Column="2" Background="#DAE5F1" BorderBrush="Gray" BorderThickness="0,1,1,1" >
- <TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" IsEnabled="False" Text="{Binding PM1NextStepName, Mode=OneWay}" ></TextBlock>
- </Border>
- </Grid>
- <Grid Grid.Row="2">
- <Grid.RowDefinitions>
- <RowDefinition/>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <Grid.ColumnDefinitions>
- <ColumnDefinition/>
- <ColumnDefinition/>
- </Grid.ColumnDefinitions>
- <TextBlock Style="{StaticResource TextBlock_Grid}" Text="Start Time"/>
- <TextBlock Grid.Column="1" Style="{StaticResource TextBlock_Grid}" Text="End Time"/>
- <Border Grid.Row="1" Background="#DAE5F1" BorderBrush="Gray" BorderThickness="1,1,1,1" >
- <TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" IsEnabled="False" Text="{Binding PM1BeginTime, Mode=OneWay}" ></TextBlock>
- </Border>
- <Border Grid.Row="1" Grid.Column="1" Background="#DAE5F1" BorderBrush="Gray" BorderThickness="0,1,1,1" >
- <TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" IsEnabled="False" Text="{Binding PM1EndTime, Mode=OneWay}" ></TextBlock>
- </Border>
- </Grid>
- <Grid Grid.Row="3" Margin="0,6,0,0" >
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="50"/>
- <ColumnDefinition/>
- <ColumnDefinition Width="50"/>
- <ColumnDefinition/>
- </Grid.ColumnDefinitions>
- <TextBlock Margin="5,5,0,0" Grid.Column="0" Text="Loop" Style="{StaticResource TextBlock_Grid}"/>
- <Border Grid.Column="1" Background="#DAE5F1" BorderBrush="Gray" BorderThickness="1,1,1,1" >
- <TextBlock x:Name="Loop" HorizontalAlignment="Center" VerticalAlignment="Center" IsEnabled="False" Text="{Binding LoopInfo, Mode=OneWay}" ></TextBlock>
- </Border>
- <TextBlock Margin="10,5,0,0" Grid.Column="2" Text="Sub" Style="{StaticResource TextBlock_Grid}"/>
- <Border Grid.Column="3" Background="#DAE5F1" BorderBrush="Gray" BorderThickness="1,1,1,1" >
- <TextBlock x:Name="Sub" HorizontalAlignment="Center" VerticalAlignment="Center" IsEnabled="False" Text="{Binding SubInfo, Mode=OneWay}" ></TextBlock>
- </Border>
- </Grid>
- </Grid>
- </Canvas>
- <i:Interaction.Triggers>
- <i:EventTrigger EventName="Click">
- <cal:ActionMessage MethodName="SwitchPage">
- <cal:Parameter Value="MainRecipe"/>
- </cal:ActionMessage>
- </i:EventTrigger>
- </i:Interaction.Triggers>
- </Button>
- <Button Grid.Row="1" Style="{StaticResource Transparent_Button}" VerticalContentAlignment="Stretch" HorizontalContentAlignment="Stretch">
- <StackPanel Orientation="Horizontal" Grid.Row="3" Height="33" Margin="0,0,0,0">
- <Border Margin="1,0,0,0" Background="#DAE5F1" BorderBrush="Gray" BorderThickness="1,1,0,1" >
- <TextBlock Text="{Binding RecipeProgress}" Width="69" TextAlignment="Center" TextWrapping="Wrap" Foreground="Black" FontSize="16" FontFamily="Segoe" HorizontalAlignment="Center" VerticalAlignment="Center" Margin="-6,0,0,1"/>
- </Border>
- <system1:ProgressBar Value="{Binding RecipeProgressValue}" BorderBrush="Gray" BorderThickness="1,1,1,1" Background="#DAE5F1" Width="290" Margin="0,0,-7,0"/>
- </StackPanel>
- <i:Interaction.Triggers>
- <i:EventTrigger EventName="Click">
- <cal:ActionMessage MethodName="SwitchPage">
- <cal:Parameter Value="PMCommand"/>
- </cal:ActionMessage>
- </i:EventTrigger>
- </i:Interaction.Triggers>
- </Button>
- </Grid>
- </ContentControl>
- </Button>
- </Grid>
- </Grid>
- <Grid Grid.Row="0" Grid.Column="1" Margin="0,0,0,0">
- <Grid.ColumnDefinitions>
- <ColumnDefinition/>
- <ColumnDefinition/>
- </Grid.ColumnDefinitions>
- <Button Grid.Row="0" Grid.Column="0" Margin="0,5,5,0" Style="{StaticResource MainArea_Button}" VerticalContentAlignment="Stretch" HorizontalContentAlignment="Stretch" >
- <ContentControl>
- <Canvas>
- <TextBlock Text="Temperature(℃)" Canvas.Left="60" HorizontalAlignment="Center" Style="{StaticResource TextBlock_Title}" VerticalAlignment="Bottom" FontSize="16" />
- <Image Source="/FurnaceUI;component/Resources/images/icons/Temperature44.png" Width="40" Canvas.Left="0"/>
- <Canvas>
- <Grid Width="180" VerticalAlignment="Bottom" Canvas.Left="26" Canvas.Top="70">
- <Grid.RowDefinitions>
- <RowDefinition Height="30"/>
- <RowDefinition Height="30"/>
- <RowDefinition Height="30"/>
- <RowDefinition Height="30"/>
- <RowDefinition Height="30"/>
- <RowDefinition Height="30"/>
- </Grid.RowDefinitions>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="90"/>
- <ColumnDefinition Width="90"/>
- </Grid.ColumnDefinitions>
- <Border Grid.Row="0" Grid.Column="0" BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,0,1" Background="{DynamicResource Table_BG_Title}" Padding="1">
- <TextBlock Text="" TextWrapping="Wrap" Foreground="Black" FontSize="16" FontFamily="Segoe" HorizontalAlignment="Center" VerticalAlignment="Center"/>
- </Border>
- <Border Grid.Row="1" Grid.Column="0" BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Content}" Padding="1">
- <TextBlock Style="{StaticResource TextBlock_Grid}" Text="U" TextWrapping="Wrap" Foreground="Black" FontSize="14" FontFamily="Segoe" HorizontalAlignment="Center" VerticalAlignment="Center"/>
- </Border>
- <Border Grid.Row="2" Grid.Column="0" BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Content}" Padding="1">
- <TextBlock Style="{StaticResource TextBlock_Grid}" Text="CU" TextWrapping="Wrap" Foreground="Black" FontSize="14" FontFamily="Segoe" HorizontalAlignment="Center" VerticalAlignment="Center"/>
- </Border>
- <Border Grid.Row="3" Grid.Column="0" BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Content}" Padding="1">
- <TextBlock Style="{StaticResource TextBlock_Grid}" Text="C" TextWrapping="Wrap" Foreground="Black" FontSize="14" FontFamily="Segoe" HorizontalAlignment="Center" VerticalAlignment="Center"/>
- </Border>
- <Border Grid.Row="4" Grid.Column="0" BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Content}" Padding="1">
- <TextBlock Style="{StaticResource TextBlock_Grid}" Text="CL" TextWrapping="Wrap" Foreground="Black" FontSize="14" FontFamily="Segoe" HorizontalAlignment="Center" VerticalAlignment="Center"/>
- </Border>
- <Border Grid.Row="5" Grid.Column="0" BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Content}" Padding="1">
- <TextBlock Style="{StaticResource TextBlock_Grid}" Text="L" TextWrapping="Wrap" Foreground="Black" FontSize="14" FontFamily="Segoe" HorizontalAlignment="Center" VerticalAlignment="Center"/>
- </Border>
- <Border Grid.Row="0" Grid.Column="1" BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,0,1" Background="{DynamicResource Table_BG_Title}" Padding="1" >
- <TextBlock Text="Actual(℃)" TextWrapping="Wrap" Foreground="Black" FontSize="16" FontFamily="Segoe" HorizontalAlignment="Center" VerticalAlignment="Center"/>
- </Border>
- <Border Grid.Row="1" Grid.Column="1" BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Padding="1" >
- <TextBlock Style="{StaticResource TextBlock_Grid}" Text="{Binding TopHeaterData.FeedBack, StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="Black" FontSize="14" FontFamily="Segoe" HorizontalAlignment="Center" VerticalAlignment="Bottom" />
- </Border>
- <Border Grid.Row="2" Grid.Column="1" BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Padding="1" >
- <TextBlock Style="{StaticResource TextBlock_Grid}" Text="{Binding TopCenterHeaterData.FeedBack, StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="Black" FontSize="14" FontFamily="Segoe" HorizontalAlignment="Center" VerticalAlignment="Center"/>
- </Border>
- <Border Grid.Row="3" Grid.Column="1" BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Padding="1" >
- <TextBlock Style="{StaticResource TextBlock_Grid}" Text="{Binding CenterHeaterData.FeedBack, StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="Black" FontSize="14" FontFamily="Segoe" HorizontalAlignment="Center" VerticalAlignment="Center"/>
- </Border>
- <Border Grid.Row="4" Grid.Column="1" BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Padding="1" >
- <TextBlock Style="{StaticResource TextBlock_Grid}" Text="{Binding CenterBottomHeaterData.FeedBack, StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="Black" FontSize="14" FontFamily="Segoe" HorizontalAlignment="Center" VerticalAlignment="Center"/>
- </Border>
- <Border Grid.Row="5" Grid.Column="1" BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Padding="1" >
- <TextBlock Style="{StaticResource TextBlock_Grid}" Text="{Binding BottomHeaterData.FeedBack, StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="Black" FontSize="14" FontFamily="Segoe" HorizontalAlignment="Center" VerticalAlignment="Center"/>
- </Border>
- </Grid>
- </Canvas>
- </Canvas>
- </ContentControl>
- <i:Interaction.Triggers>
- <i:EventTrigger EventName="Click">
- <cal:ActionMessage MethodName="SwitchPage">
- <cal:Parameter Value="Temp"/>
- </cal:ActionMessage>
- </i:EventTrigger>
- </i:Interaction.Triggers>
- </Button>
- <Button Grid.Row="0" Grid.Column="1" Margin="0,5,0,0" Style="{StaticResource MainArea_Button}" VerticalContentAlignment="Stretch" HorizontalContentAlignment="Stretch" >
- <ContentControl>
- <Canvas>
- <TextBlock Text="Pressure" Canvas.Left="60" HorizontalAlignment="Center" Style="{StaticResource TextBlock_Title}" VerticalAlignment="Bottom" FontSize="16"/>
- <Image Source="/FurnaceUI;component/Resources/images/icons/APC44.png" Width="40" Canvas.Left="0"/>
- <Grid Canvas.Top="30" Height="280">
- <Grid.RowDefinitions>
- <RowDefinition/>
- <RowDefinition/>
- <RowDefinition/>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <Grid Grid.Row="0" Width="230">
- <Grid.RowDefinitions>
- <RowDefinition/>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="0.7*"/>
- <ColumnDefinition Width="0.3*"/>
- </Grid.ColumnDefinitions>
- <TextBlock Style="{StaticResource TextBlock_Grid}" Grid.ColumnSpan="2" Text="Actual"/>
- <Border Grid.Row="1" Background="#DAE5F1" BorderBrush="Gray" BorderThickness="1,1,1,1" >
- <TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" IsEnabled="False" Text="{Binding APCFeedbackView, Mode=OneWay}" Margin="4" ></TextBlock>
- </Border>
- <!--<TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" Background="#DAE5F1" IsEnabled="False" Text="{Binding APCFeedbackView, StringFormat={}{0:f3}, Mode=OneWay}" Margin="4" Visibility="{Binding APCPressureView}"></TextBlock>-->
- <Border Grid.Row="1" Grid.Column="1" Background="#DAE5F1" BorderBrush="Gray" BorderThickness="0,1,1,1" >
- <TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" IsEnabled="False" Text="{Binding DefaultUnit}" Margin="4"/>
- </Border>
- </Grid>
- <Grid Grid.Row="1">
- <Grid.RowDefinitions>
- <RowDefinition/>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <TextBlock Style="{StaticResource TextBlock_Grid}" Text="Mode"/>
- <Border Grid.Row="1" Background="#DAE5F1" BorderBrush="Gray" BorderThickness="1,1,1,1" >
- <TextBlock Background="#DAE5F1" IsEnabled="False" HorizontalAlignment="Center" VerticalAlignment="Center" Margin="4" Text="APC Control" Grid.Row="1"/>
- </Border>
- </Grid>
- <Grid Grid.Row="2">
- <Grid.RowDefinitions>
- <RowDefinition/>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <TextBlock Style="{StaticResource TextBlock_Grid}" Text="Command"/>
- <Border Grid.Row="1" Background="#DAE5F1" BorderBrush="Gray" BorderThickness="1,1,1,1" >
- <TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" IsEnabled="False" Margin="4" Text="{Binding APCData.TextModeFeedback, Mode=OneWay}" />
- </Border>
- </Grid>
- <Grid Grid.Row="3" Width="230">
- <Grid.RowDefinitions>
- <RowDefinition/>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="0.7*"/>
- <ColumnDefinition Width="0.3*"/>
- </Grid.ColumnDefinitions>
- <TextBlock Style="{StaticResource TextBlock_Grid}" Grid.ColumnSpan="2" Text="APC"/>
- <Border Grid.Row="1" Background="#DAE5F1" BorderBrush="Gray" BorderThickness="1,1,1,1" >
- <TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" IsEnabled="False" Text="{Binding APCData.PositionFeedback, StringFormat={}{0:f1}, Mode=OneWay}" Margin="4" ></TextBlock>
- </Border>
- <!--<TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" Background="#DAE5F1" IsEnabled="False" Text="{Binding APCFeedbackView, StringFormat={}{0:f3}, Mode=OneWay}" Margin="4" Visibility="{Binding APCPressureView}"></TextBlock>-->
- <Border Grid.Row="1" Grid.Column="1" Background="#DAE5F1" BorderBrush="Gray" BorderThickness="0,1,1,1" >
- <TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" Background="#DAE5F1" Text="%" Margin="4"/>
- </Border>
- </Grid>
- </Grid>
- </Canvas>
- </ContentControl>
- <i:Interaction.Triggers>
- <i:EventTrigger EventName="Click">
- <cal:ActionMessage MethodName="SwitchPage">
- <cal:Parameter Value="Pressure"/>
- </cal:ActionMessage>
- </i:EventTrigger>
- </i:Interaction.Triggers>
- </Button>
- </Grid>
- <Button Grid.Row="1" Grid.Column="0" Margin="0,5,5,-11" Padding="0" Style="{StaticResource MainArea_Button}" VerticalContentAlignment="Stretch" HorizontalContentAlignment="Stretch" >
- <ContentControl>
- <Canvas Margin="-10,20,10,0">
- <TextBlock Canvas.Left="60" Canvas.Top="-15" Text="Transfer" HorizontalAlignment="Center" Style="{StaticResource TextBlock_Title}" VerticalAlignment="Top" FontSize="16"/>
- <Image Source="/FurnaceUI;component/Resources/images/icons/Stocker44.png" Width="40" Canvas.Left="8" Canvas.Top="-20"/>
- <Canvas Canvas.Top="20" Canvas.Left="30">
- <Canvas.RenderTransform>
- <TransformGroup>
- <ScaleTransform ScaleX="0.55" ScaleY="0.55"/>
- <ScaleTransform />
- <SkewTransform/>
- <RotateTransform/>
- <TranslateTransform/>
- </TransformGroup>
- </Canvas.RenderTransform>
- <i:Interaction.Triggers>
- <i:EventTrigger EventName="MouseLeftButtonDown">
- <cal:ActionMessage MethodName="CanvasMouseLeftButtonDown">
- <cal:Parameter Value="$Source"/>
- </cal:ActionMessage>
- </i:EventTrigger>
- </i:Interaction.Triggers>
- <Image Source="/FurnaceUI;component/Resources/Images/Controls3/bt1.png" Canvas.Left="19" Canvas.Top="115" Width="81" />
- <Image Source="/FurnaceUI;component/Resources/Images/Controls3/bt1.png" Canvas.Left="139" Canvas.Top="115" Width="81"/>
- <Image Source="/FurnaceUI;component/Resources/Images/Controls3/bt1.png" Canvas.Left="19" Canvas.Top="395" Width="81" />
- <Image Source="/FurnaceUI;component/Resources/Images/Controls3/bt1.png" Canvas.Left="139" Canvas.Top="395" Width="81"/>
- <!--<Image Source="/FurnaceUI;component/Resources/Images/Controls3/hg1.png" Canvas.Left="295" Canvas.Top="95"/>-->
- <Image Source="{Binding CassetteRobotAxleStatusPath}" Canvas.Left="295" Canvas.Top="-40" Height="770">
- <i:Interaction.Triggers>
- <i:EventTrigger EventName="MouseDown">
- <cal:ActionMessage MethodName="PopupPage">
- <cal:Parameter Value="WaferRobot"/>
- </cal:ActionMessage>
- </i:EventTrigger>
- </i:Interaction.Triggers>
- </Image>
- <!--<Image Source="/FurnaceUI;component/Resources/Images/Controls3/hg2.png" Canvas.Left="776" Canvas.Top="296"/>-->
- <Image Source="{Binding WaferRobotAxleStatusPath}" Canvas.Left="776" Canvas.Top="360" Height="352">
- <i:Interaction.Triggers>
- <i:EventTrigger EventName="MouseLeftButtonDown">
- <cal:ActionMessage MethodName="PopupPage">
- <cal:Parameter Value="CassetteRobot"/>
- </cal:ActionMessage>
- </i:EventTrigger>
- </i:Interaction.Triggers>
- </Image>
- <!--<Image Source="/FurnaceUI;component/Resources/Images/Controls3/qt3.png" Canvas.Left="32" Canvas.Top="50" />-->
- <Image Source="/FurnaceUI;component/Resources/Images/Controls3/bt1.png" Canvas.Left="609" Canvas.Top="450" Width="81"/>
- <Image Source="/FurnaceUI;component/Resources/Images/Controls3/bt1.png" Canvas.Left="609" Canvas.Top="600" Width="81"/>
- <!--<Image Source="/FurnaceUI;component/Resources/Images/Controls3/listbg.png" Canvas.Left="33" Canvas.Top="352"/>
- <Image Source="/FurnaceUI;component/Resources/Images/Controls3/bt2.png" Canvas.Left="33" Canvas.Top="428"/>
- <Image Source="/FurnaceUI;component/Resources/Images/Controls3/bt2.png" Canvas.Left="33" Canvas.Top="506"/>
- <Image Source="/FurnaceUI;component/Resources/Images/Controls3/bt2.png" Canvas.Left="33" Canvas.Top="585"/>
- <Image Source="/FurnaceUI;component/Resources/Images/Controls3/bt2.png" Canvas.Left="33" Canvas.Top="672"/>-->
- <TextBlock Text="LP 3" FontSize="13" FontFamily="Arial" Canvas.Left="45" Canvas.Top="135" Foreground="Black"/>
- <TextBlock Text="LP 4" FontSize="13" FontFamily="Arial" Canvas.Left="166" Canvas.Top="135" Foreground="Black"/>
- <TextBlock Text="LP 1" FontSize="13" FontFamily="Arial" Canvas.Left="45" Canvas.Top="415" Foreground="Black"/>
- <TextBlock Text="LP 2" FontSize="13" FontFamily="Arial" Canvas.Left="166" Canvas.Top="415" Foreground="Black"/>
- <TextBlock Text="FIMS 2" FontSize="13" FontFamily="Arial" Canvas.Left="629" Canvas.Top="470" Foreground="Black"/>
- <TextBlock Text="FIMS 1" FontSize="13" FontFamily="Arial" Canvas.Left="629" Canvas.Top="620" Foreground="Black"/>
- <TextBlock Visibility="{Binding IsStocker1Visibility}" Text="1" FontSize="13" FontFamily="Arial" Canvas.Left="475" Canvas.Top="304" Foreground="Black"/>
- <Image Visibility="{Binding IsStocker1Visibility}" Source="/FurnaceUI;component/Resources/Images/Controls3/bg1.png" Canvas.Left="491" Canvas.Top="265" />
- <Image Width="80" Panel.ZIndex="-1" Source="/FurnaceUI;component/Resources/Images/Controls3/StockerHidden.png" Canvas.Left="491" Canvas.Top="265" />
- <deviceControl:AITSensor GreenColor="True" Visibility="{Binding IsStocker1Visibility}" LightOnValue="{Binding SensorStation1Presence}" Canvas.Left="471" Canvas.Top="320"/>
- <parts:CassetteView CarrierModule="Stocker1" Visibility="{Binding IsStocker1Visibility}" CarrierData="{Binding Stocker1CarrierData}" CassetteType="{Binding Stocker1CarrierType}" WaferCount="{Binding Stocker1WaferCount}" Canvas.Left="499" Canvas.Top="274" Width="65" Height="65"/>
- <TextBlock Visibility="{Binding IsStocker2Visibility}" Text="2" FontSize="13" FontFamily="Arial" Canvas.Left="595" Canvas.Top="304" Foreground="Black"/>
- <Image Visibility="{Binding IsStocker2Visibility}" Source="/FurnaceUI;component/Resources/Images/Controls3/bg1.png" Canvas.Left="609" Canvas.Top="265" />
- <Image Width="80" Panel.ZIndex="-1" Source="/FurnaceUI;component/Resources/Images/Controls3/StockerHidden.png" Canvas.Left="609" Canvas.Top="265" />
- <deviceControl:AITSensor Visibility="{Binding IsStocker2Visibility}" GreenColor="True" LightOnValue="{Binding SensorStation2Presence}" Canvas.Left="591" Canvas.Top="320"/>
- <parts:CassetteView Visibility="{Binding IsStocker2Visibility}" CarrierModule="Stocker2" CarrierData="{Binding Stocker2CarrierData}" CassetteType="{Binding Stocker2CarrierType}" WaferCount="{Binding Stocker2WaferCount}" Canvas.Left="617" Canvas.Top="274" Width="65" Height="65"/>
- <TextBlock Text="3" Visibility="{Binding IsStocker3Visibility}" FontSize="13" FontFamily="Arial" Canvas.Left="713" Canvas.Top="304" Foreground="Black"/>
- <Image Visibility="{Binding IsStocker3Visibility}" Source="/FurnaceUI;component/Resources/Images/Controls3/bg1.png" Canvas.Left="727" Canvas.Top="265" />
- <Image Width="80" Panel.ZIndex="-1" Source="/FurnaceUI;component/Resources/Images/Controls3/StockerHidden.png" Canvas.Left="727" Canvas.Top="265" />
- <deviceControl:AITSensor Visibility="{Binding IsStocker3Visibility}" GreenColor="True" LightOnValue="{Binding SensorStation3Presence}" Canvas.Left="708" Canvas.Top="320"/>
- <parts:CassetteView Visibility="{Binding IsStocker3Visibility}" CarrierModule="Stocker3" CarrierData="{Binding Stocker3CarrierData}" CassetteType="{Binding Stocker3CarrierType}" WaferCount="{Binding Stocker3WaferCount}" Canvas.Left="735" Canvas.Top="274" Width="65" Height="65"/>
- <TextBlock Visibility="{Binding IsStocker4Visibility}" Text="4" FontSize="13" FontFamily="Arial" Canvas.Left="832" Canvas.Top="304" Foreground="Black"/>
- <Image Visibility="{Binding IsStocker4Visibility}" Source="/FurnaceUI;component/Resources/Images/Controls3/bg1.png" Canvas.Left="845" Canvas.Top="265" />
- <Image Width="80" Panel.ZIndex="-1" Source="/FurnaceUI;component/Resources/Images/Controls3/StockerHidden.png" Canvas.Left="845" Canvas.Top="265" />
- <deviceControl:AITSensor Visibility="{Binding IsStocker4Visibility}" GreenColor="True" LightOnValue="{Binding SensorStation4Presence}" Canvas.Left="827" Canvas.Top="320"/>
- <parts:CassetteView Visibility="{Binding IsStocker4Visibility}" CarrierModule="Stocker4" CarrierData="{Binding Stocker4CarrierData}" CassetteType="{Binding Stocker4CarrierType}" WaferCount="{Binding Stocker4WaferCount}" Canvas.Left="853" Canvas.Top="274" Width="65" Height="65"/>
- <TextBlock Visibility="{Binding IsStocker5Visibility}" Text="5" FontSize="13" FontFamily="Arial" Canvas.Left="475" Canvas.Top="214" Foreground="Black"/>
- <Image Visibility="{Binding IsStocker5Visibility}" Source="/FurnaceUI;component/Resources/Images/Controls3/bg1.png" Canvas.Left="491" Canvas.Top="175" />
- <Image Width="80" Panel.ZIndex="-1" Source="/FurnaceUI;component/Resources/Images/Controls3/StockerHidden.png" Canvas.Left="491" Canvas.Top="175" />
- <deviceControl:AITSensor Visibility="{Binding IsStocker5Visibility}" GreenColor="True" LightOnValue="{Binding SensorStation5Presence}" Canvas.Left="471" Canvas.Top="230"/>
- <parts:CassetteView Visibility="{Binding IsStocker5Visibility}" CarrierModule="Stocker5" CarrierData="{Binding Stocker5CarrierData}" CassetteType="{Binding Stocker5CarrierData.CarrierType}" WaferCount="{Binding Stocker5WaferCount}" Canvas.Left="499" Canvas.Top="184" Width="65" Height="65"/>
- <TextBlock Visibility="{Binding IsStocker6Visibility}" Text="6" FontSize="13" FontFamily="Arial" Canvas.Left="595" Canvas.Top="214" Foreground="Black"/>
- <Image Visibility="{Binding IsStocker6Visibility}" Source="/FurnaceUI;component/Resources/Images/Controls3/bg1.png" Canvas.Left="609" Canvas.Top="175" />
- <Image Width="80" Panel.ZIndex="-1" Source="/FurnaceUI;component/Resources/Images/Controls3/StockerHidden.png" Canvas.Left="609" Canvas.Top="175" />
- <deviceControl:AITSensor Visibility="{Binding IsStocker6Visibility}" GreenColor="True" LightOnValue="{Binding SensorStation6Presence}" Canvas.Left="591" Canvas.Top="230"/>
- <parts:CassetteView Visibility="{Binding IsStocker6Visibility}" CarrierModule="Stocker6" CarrierData="{Binding Stocker6CarrierData}" CassetteType="{Binding Stocker6CarrierData.CarrierType}" WaferCount="{Binding Stocker6WaferCount}" Canvas.Left="617" Canvas.Top="184" Width="65" Height="65"/>
- <TextBlock Visibility="{Binding IsStocker7Visibility}" Text="7" FontSize="13" FontFamily="Arial" Canvas.Left="713" Canvas.Top="214" Foreground="Black"/>
- <Image Visibility="{Binding IsStocker7Visibility}" Source="/FurnaceUI;component/Resources/Images/Controls3/bg1.png" Canvas.Left="727" Canvas.Top="175" />
- <Image Width="80" Panel.ZIndex="-1" Source="/FurnaceUI;component/Resources/Images/Controls3/StockerHidden.png" Canvas.Left="727" Canvas.Top="175" />
- <deviceControl:AITSensor Visibility="{Binding IsStocker7Visibility}" GreenColor="True" LightOnValue="{Binding SensorStation7Presence}" Canvas.Left="708" Canvas.Top="230"/>
- <parts:CassetteView Visibility="{Binding IsStocker7Visibility}" CarrierModule="Stocker7" CarrierData="{Binding Stocker7CarrierData}" CassetteType="{Binding Stocker7CarrierData.CarrierType}" WaferCount="{Binding Stocker7WaferCount}" Canvas.Left="735" Canvas.Top="184" Width="65" Height="65"/>
- <TextBlock Text="8" Visibility="{Binding IsStocker8Visibility}" FontSize="13" FontFamily="Arial" Canvas.Left="832" Canvas.Top="214" Foreground="Black"/>
- <Image Visibility="{Binding IsStocker8Visibility}" Source="/FurnaceUI;component/Resources/Images/Controls3/bg1.png" Canvas.Left="845" Canvas.Top="175" />
- <Image Width="80" Panel.ZIndex="-1" Source="/FurnaceUI;component/Resources/Images/Controls3/StockerHidden.png" Canvas.Left="845" Canvas.Top="175" />
- <deviceControl:AITSensor Visibility="{Binding IsStocker8Visibility}" GreenColor="True" LightOnValue="{Binding SensorStation8Presence}" Canvas.Left="827" Canvas.Top="230"/>
- <parts:CassetteView Visibility="{Binding IsStocker8Visibility}" CarrierModule="Stocker8" CarrierData="{Binding Stocker8CarrierData}" CassetteType="{Binding Stocker8CarrierData.CarrierType}" WaferCount="{Binding Stocker8WaferCount}" Canvas.Left="853" Canvas.Top="184" Width="65" Height="65"/>
- <TextBlock Text="9" Visibility="{Binding IsStocker9Visibility}" FontSize="13" FontFamily="Arial" Canvas.Left="475" Canvas.Top="124" Foreground="Black"/>
- <Image Visibility="{Binding IsStocker9Visibility}" Source="/FurnaceUI;component/Resources/Images/Controls3/bg1.png" Canvas.Left="491" Canvas.Top="85" />
- <Image Width="80" Panel.ZIndex="-1" Source="/FurnaceUI;component/Resources/Images/Controls3/StockerHidden.png" Canvas.Left="491" Canvas.Top="85" />
- <deviceControl:AITSensor Visibility="{Binding IsStocker9Visibility}" GreenColor="True" LightOnValue="{Binding SensorStation9Presence}" Canvas.Left="471" Canvas.Top="140"/>
- <parts:CassetteView Visibility="{Binding IsStocker9Visibility}" CarrierModule="Stocker9" CarrierData="{Binding Stocker9CarrierData}" CassetteType="{Binding Stocker9CarrierData.CarrierType}" WaferCount="{Binding Stocker9WaferCount}" Canvas.Left="499" Canvas.Top="94" Width="65" Height="65"/>
- <TextBlock Visibility="{Binding IsStocker10Visibility}" Text="10" FontSize="13" FontFamily="Arial" Canvas.Left="588" Canvas.Top="124" Foreground="Black"/>
- <Image Visibility="{Binding IsStocker10Visibility}" Source="/FurnaceUI;component/Resources/Images/Controls3/bg1.png" Canvas.Left="609" Canvas.Top="85" />
- <Image Width="80" Panel.ZIndex="-1" Source="/FurnaceUI;component/Resources/Images/Controls3/StockerHidden.png" Canvas.Left="609" Canvas.Top="85" />
- <deviceControl:AITSensor Visibility="{Binding IsStocker10Visibility}" GreenColor="True" LightOnValue="{Binding SensorStation10Presence}" Canvas.Left="591" Canvas.Top="140"/>
- <parts:CassetteView Visibility="{Binding IsStocker10Visibility}" CarrierModule="Stocker10" CarrierData="{Binding Stocker10CarrierData}" CassetteType="{Binding Stocker10CarrierData.CarrierType}" WaferCount="{Binding Stocker10WaferCount}" Canvas.Left="617" Canvas.Top="94" Width="65" Height="65"/>
- <TextBlock Visibility="{Binding IsStocker11Visibility}" Text="11" FontSize="13" FontFamily="Arial" Canvas.Left="708" Canvas.Top="124" Foreground="Black"/>
- <Image Visibility="{Binding IsStocker11Visibility}" Source="/FurnaceUI;component/Resources/Images/Controls3/bg1.png" Canvas.Left="727" Canvas.Top="85" />
- <Image Width="80" Panel.ZIndex="-1" Source="/FurnaceUI;component/Resources/Images/Controls3/StockerHidden.png" Canvas.Left="727" Canvas.Top="85" />
- <deviceControl:AITSensor Visibility="{Binding IsStocker11Visibility}" GreenColor="True" LightOnValue="{Binding SensorStation11Presence}" Canvas.Left="708" Canvas.Top="140"/>
- <parts:CassetteView Visibility="{Binding IsStocker11Visibility}" CarrierModule="Stocker11" CarrierData="{Binding Stocker11CarrierData}" CassetteType="{Binding Stocker11CarrierData.CarrierType}" WaferCount="{Binding Stocker11WaferCount}" Canvas.Left="735" Canvas.Top="94" Width="65" Height="65"/>
- <TextBlock Visibility="{Binding IsStocker12Visibility}" Text="12" FontSize="13" FontFamily="Arial" Canvas.Left="827" Canvas.Top="124" Foreground="Black"/>
- <Image Visibility="{Binding IsStocker12Visibility}" Source="/FurnaceUI;component/Resources/Images/Controls3/bg1.png" Canvas.Left="845" Canvas.Top="85" />
- <Image Width="80" Panel.ZIndex="-1" Source="/FurnaceUI;component/Resources/Images/Controls3/StockerHidden.png" Canvas.Left="845" Canvas.Top="85" />
- <deviceControl:AITSensor Visibility="{Binding IsStocker12Visibility}" GreenColor="True" LightOnValue="{Binding SensorStation12Presence}" Canvas.Left="827" Canvas.Top="140"/>
- <parts:CassetteView Visibility="{Binding IsStocker12Visibility}" CarrierModule="Stocker12" CarrierData="{Binding Stocker12CarrierData}" CassetteType="{Binding Stocker12CarrierData.CarrierType}" WaferCount="{Binding Stocker12WaferCount}" Canvas.Left="853" Canvas.Top="94" Width="65" Height="65"/>
- <TextBlock Visibility="{Binding IsStocker13Visibility}" Text="13" FontSize="13" FontFamily="Arial" Canvas.Left="470" Canvas.Top="34" Foreground="Black"/>
- <Image Visibility="{Binding IsStocker13Visibility}" Source="/FurnaceUI;component/Resources/Images/Controls3/bg1.png" Canvas.Left="491" Canvas.Top="-5" />
- <Image Width="80" Panel.ZIndex="-1" Source="/FurnaceUI;component/Resources/Images/Controls3/StockerHidden.png" Canvas.Left="491" Canvas.Top="-5" />
- <deviceControl:AITSensor Visibility="{Binding IsStocker13Visibility}" GreenColor="True" LightOnValue="{Binding SensorStation13Presence}" Canvas.Left="471" Canvas.Top="48"/>
- <parts:CassetteView Visibility="{Binding IsStocker13Visibility}" CarrierModule="Stocker13" CarrierData="{Binding Stocker13CarrierData}" CassetteType="{Binding Stocker13CarrierData.CarrierType}" WaferCount="{Binding Stocker13WaferCount}" Canvas.Left="499" Canvas.Top="4" Width="65" Height="65"/>
- <TextBlock Text="14" Visibility="{Binding IsStocker14Visibility}" FontSize="13" FontFamily="Arial" Canvas.Left="588" Canvas.Top="34" Foreground="Black"/>
- <Image Visibility="{Binding IsStocker14Visibility}" Source="/FurnaceUI;component/Resources/Images/Controls3/bg1.png" Canvas.Left="609" Canvas.Top="-5" />
- <Image Width="80" Panel.ZIndex="-1" Source="/FurnaceUI;component/Resources/Images/Controls3/StockerHidden.png" Canvas.Left="609" Canvas.Top="-5" />
- <deviceControl:AITSensor Visibility="{Binding IsStocker14Visibility}" GreenColor="True" LightOnValue="{Binding SensorStation14Presence}" Canvas.Left="591" Canvas.Top="48"/>
- <parts:CassetteView Visibility="{Binding IsStocker14Visibility}" CarrierModule="Stocker14" CarrierData="{Binding Stocker14CarrierData}" CassetteType="{Binding Stocker14CarrierData.CarrierType}" WaferCount="{Binding Stocker14WaferCount}" Canvas.Left="617" Canvas.Top="4" Width="65" Height="65"/>
- <TextBlock Visibility="{Binding IsStocker15Visibility}" Text="15" FontSize="13" FontFamily="Arial" Canvas.Left="708" Canvas.Top="34" Foreground="Black"/>
- <Image Visibility="{Binding IsStocker15Visibility}" Source="/FurnaceUI;component/Resources/Images/Controls3/bg1.png" Canvas.Left="727" Canvas.Top="-5" />
- <Image Width="80" Panel.ZIndex="-1" Source="/FurnaceUI;component/Resources/Images/Controls3/StockerHidden.png" Canvas.Left="727" Canvas.Top="-5" />
- <deviceControl:AITSensor Visibility="{Binding IsStocker15Visibility}" GreenColor="True" LightOnValue="{Binding SensorStation15Presence}" Canvas.Left="708" Canvas.Top="48"/>
- <parts:CassetteView Visibility="{Binding IsStocker15Visibility}" CarrierModule="Stocker15" CarrierData="{Binding Stocker15CarrierData}" CassetteType="{Binding Stocker15CarrierData.CarrierType}" WaferCount="{Binding Stocker15WaferCount}" Canvas.Left="735" Canvas.Top="4" Width="65" Height="65"/>
- <TextBlock Visibility="{Binding IsStocker16Visibility}" Text="16" FontSize="13" FontFamily="Arial" Canvas.Left="827" Canvas.Top="34" Foreground="Black"/>
- <Image Visibility="{Binding IsStocker16Visibility}" Source="/FurnaceUI;component/Resources/Images/Controls3/bg1.png" Canvas.Left="845" Canvas.Top="-5" />
- <Image Width="80" Panel.ZIndex="-1" Source="/FurnaceUI;component/Resources/Images/Controls3/StockerHidden.png" Canvas.Left="845" Canvas.Top="-5" />
- <deviceControl:AITSensor Visibility="{Binding IsStocker16Visibility}" GreenColor="True" LightOnValue="{Binding SensorStation16Presence}" Canvas.Left="827" Canvas.Top="48"/>
- <parts:CassetteView Visibility="{Binding IsStocker16Visibility}" CarrierModule="Stocker16" CarrierData="{Binding Stocker16CarrierData}" CassetteType="{Binding Stocker16CarrierData.CarrierType}" WaferCount="{Binding Stocker16WaferCount}" Canvas.Left="853" Canvas.Top="4" Width="65" Height="65"/>
- <TextBlock Visibility="{Binding IsStocker17Visibility}" Text="17" FontSize="13" FontFamily="Arial" Canvas.Left="-1" Canvas.Top="214" Foreground="Black"/>
- <Image Visibility="{Binding IsStocker17Visibility}" Source="/FurnaceUI;component/Resources/Images/Controls3/bg1.png" Canvas.Left="21" Canvas.Top="175" />
- <Image Width="80" Panel.ZIndex="-1" Source="/FurnaceUI;component/Resources/Images/Controls3/StockerHidden.png" Canvas.Left="21" Canvas.Top="175" />
- <deviceControl:AITSensor Visibility="{Binding IsStocker17Visibility}" GreenColor="True" LightOnValue="{Binding SensorStation17Presence}" Canvas.Left="1" Canvas.Top="230" />
- <parts:CassetteView Visibility="{Binding IsStocker17Visibility}" CarrierModule="Stocker17" CarrierData="{Binding Stocker17CarrierData}" CassetteType="{Binding Stocker17CarrierData.CarrierType}" WaferCount="{Binding Stocker17WaferCount}" Canvas.Left="29" Canvas.Top="185" Width="65" Height="65"/>
- <TextBlock Text="18" FontSize="13" FontFamily="Arial" Canvas.Left="119" Canvas.Top="214" Visibility="{Binding IsStocker18Visibility}" Foreground="Black"/>
- <Image Source="/FurnaceUI;component/Resources/Images/Controls3/bg1.png" Canvas.Left="139" Canvas.Top="175" Visibility="{Binding IsStocker18Visibility}"/>
- <Image Source="/FurnaceUI;component/Resources/Images/Controls3/StockerHidden.png" Canvas.Left="139" Canvas.Top="175" Width="80" Panel.ZIndex="-1"/>
- <deviceControl:AITSensor GreenColor="True" LightOnValue="{Binding SensorStation18Presence}" Canvas.Left="119" Canvas.Top="230" Visibility="{Binding IsStocker18Visibility}"/>
- <parts:CassetteView CarrierModule="Stocker18" CarrierData="{Binding Stocker18CarrierData}" CassetteType="{Binding Stocker18CarrierData.CarrierType}" WaferCount="{Binding Stocker18WaferCount}" Canvas.Left="147" Canvas.Top="185" Width="65" Height="65" Visibility="{Binding IsStocker18Visibility}"/>
- <!--<Image Source="/FurnaceUI;component/Resources/Images/Controls3/bg1.png" Canvas.Left="21" Canvas.Top="388" Visibility="{Binding IsLPVisibility}"/>
- <Image Source="/FurnaceUI;component/Resources/Images/Controls3/bg1.png" Canvas.Left="139" Canvas.Top="388" Visibility="{Binding IsLPVisibility}"/>-->
- <!--<TextBlock Text="17" FontSize="13" FontFamily="Arial" Canvas.Left="-1" Canvas.Top="424" Visibility="{Binding IsLPVisibility}"/>
- <TextBlock Text="18" FontSize="13" FontFamily="Arial" Canvas.Left="119" Canvas.Top="424" Visibility="{Binding IsLPVisibility}"/>-->
- <TextBlock Text="{Binding StockerWaferType[17]}" FontSize="13" FontFamily="Arial" Canvas.Left="119" Canvas.Top="194" />
- <TextBlock Text="{Binding StockerWaferType[16]}" FontSize="13" FontFamily="Arial" Canvas.Left="-1" Canvas.Top="194" />
- <!--<TextBlock Text="{Binding StockerWaferType[17]}" FontSize="13" FontFamily="Arial" Canvas.Left="119" Canvas.Top="404" Visibility="{Binding IsLPVisibility}"/>
- <TextBlock Text="{Binding StockerWaferType[16]}" FontSize="13" FontFamily="Arial" Canvas.Left="-1" Canvas.Top="404" Visibility="{Binding IsLPVisibility}"/>-->
- <TextBlock Text="{Binding StockerWaferType[15]}" FontSize="13" FontFamily="Arial" Canvas.Left="835" Canvas.Top="224"/>
- <TextBlock Text="{Binding StockerWaferType[14]}" FontSize="13" FontFamily="Arial" Canvas.Left="715" Canvas.Top="224"/>
- <TextBlock Text="{Binding StockerWaferType[13]}" FontSize="13" FontFamily="Arial" Canvas.Left="595" Canvas.Top="224"/>
- <TextBlock Text="{Binding StockerWaferType[12]}" FontSize="13" FontFamily="Arial" Canvas.Left="475" Canvas.Top="224"/>
- <TextBlock Text="{Binding StockerWaferType[11]}" FontSize="13" FontFamily="Arial" Canvas.Left="835" Canvas.Top="134"/>
- <TextBlock Text="{Binding StockerWaferType[10]}" FontSize="13" FontFamily="Arial" Canvas.Left="715" Canvas.Top="134"/>
- <TextBlock Text="{Binding StockerWaferType[9]}" FontSize="13" FontFamily="Arial" Canvas.Left="595" Canvas.Top="134"/>
- <TextBlock Text="{Binding StockerWaferType[8]}" FontSize="13" FontFamily="Arial" Canvas.Left="475" Canvas.Top="134"/>
- <TextBlock Text="{Binding StockerWaferType[7]}" FontSize="13" FontFamily="Arial" Canvas.Left="835" Canvas.Top="44"/>
- <TextBlock Text="{Binding StockerWaferType[6]}" FontSize="13" FontFamily="Arial" Canvas.Left="715" Canvas.Top="44"/>
- <TextBlock Text="{Binding StockerWaferType[5]}" FontSize="13" FontFamily="Arial" Canvas.Left="595" Canvas.Top="44"/>
- <TextBlock Text="{Binding StockerWaferType[4]}" FontSize="13" FontFamily="Arial" Canvas.Left="475" Canvas.Top="44"/>
- <TextBlock Text="{Binding StockerWaferType[3]}" FontSize="13" FontFamily="Arial" Canvas.Left="835" Canvas.Top="-54"/>
- <TextBlock Text="{Binding StockerWaferType[2]}" FontSize="13" FontFamily="Arial" Canvas.Left="715" Canvas.Top="-54"/>
- <TextBlock Text="{Binding StockerWaferType[1]}" FontSize="13" FontFamily="Arial" Canvas.Left="595" Canvas.Top="-54"/>
- <TextBlock Text="{Binding StockerWaferType[0]}" FontSize="13" FontFamily="Arial" Canvas.Left="475" Canvas.Top="-54"/>
- <parts:CassetteView CarrierModule="FIMS2" CarrierData="{Binding FIMS2CarrierData}" CassetteType="{Binding FIMS2CarrierData.CarrierType}" WaferCount="{Binding FIMS2WaferCount}" Canvas.Left="618" Canvas.Top="386" Width="65" Height="65"/>
- <parts:CassetteView CarrierModule="FIMS1" CarrierData="{Binding FIMS1CarrierData}" CassetteType="{Binding FIMS1CarrierData.CarrierType}" WaferCount="{Binding FIMS1WaferCount}" Canvas.Left="618" Canvas.Top="536" Width="65" Height="65"/>
- <!--<parts:CassetteView CarrierModule="Stocker17" CarrierData="{Binding Stocker17CarrierData}" CassetteType="{Binding Stocker17CarrierData.CarrierType}" WaferCount="{Binding Stocker17WaferCount}" Canvas.Left="30" Canvas.Top="397" Width="65" Height="65" Visibility="{Binding IsLPVisibility}"/>
- <parts:CassetteView CarrierModule="Stocker18" CarrierData="{Binding Stocker18CarrierData}" CassetteType="{Binding Stocker18CarrierData.CarrierType}" WaferCount="{Binding Stocker18WaferCount}" Canvas.Left="148" Canvas.Top="397" Width="65" Height="65" Visibility="{Binding IsLPVisibility}"/>-->
- <parts:CassetteView CarrierModule="LP3" CarrierData="{Binding LP3CarrierData}" CassetteType="{Binding LP3CarrierData.CarrierType}" WaferCount="{Binding LP3WaferCount}" Canvas.Left="27" Canvas.Top="52" Width="65" Height="65"/>
- <parts:CassetteView CarrierModule="LP4" CarrierData="{Binding LP4CarrierData}" CassetteType="{Binding LP4CarrierData.CarrierType}" WaferCount="{Binding LP4WaferCount}" Canvas.Left="146" Canvas.Top="52" Width="65" Height="64"/>
- <parts:CassetteView CarrierModule="LP1" CarrierData="{Binding LP1CarrierData}" CassetteType="{Binding LP1CarrierData.CarrierType}" WaferCount="{Binding LP1WaferCount}" Canvas.Left="27" Canvas.Top="332" Width="65" Height="65"/>
- <parts:CassetteView CarrierModule="LP2" CarrierData="{Binding LP2CarrierData}" CassetteType="{Binding LP2CarrierData.CarrierType}" WaferCount="{Binding LP2WaferCount}" Canvas.Left="146" Canvas.Top="332" Width="65" Height="64"/>
- <!--<deviceControl:AITSensor GreenColor="True" LightOnValue="{Binding Stage17FOUPSensor1}" Canvas.Left="1" Canvas.Top="444" Visibility="{Binding IsLPVisibility}"/>
- <deviceControl:AITSensor GreenColor="True" LightOnValue="{Binding Stage18FOUPSensor1}" Canvas.Left="119" Canvas.Top="444" Visibility="{Binding IsLPVisibility}"/>-->
- <!--<Image Source="/FurnaceUI;component/Resources/Images/Controls2/16.png" Canvas.Left="296" Canvas.Top="320" Stretch="None" Visibility="Hidden"/>
- <Image Source="/FurnaceUI;component/Resources/Images/Controls2/16.png" Canvas.Left="296" Canvas.Top="424" Stretch="None" Visibility="Hidden"/>
- <Image Source="/FurnaceUI;component/Resources/Images/Controls2/16.png" Canvas.Left="440" Canvas.Top="104" Stretch="None" Visibility="Hidden"/>
- <Image Source="/FurnaceUI;component/Resources/Images/Controls2/16.png" Canvas.Left="440" Canvas.Top="194" Stretch="None" Visibility="Hidden"/>
- <Image Source="/FurnaceUI;component/Resources/Images/Controls2/16.png" Canvas.Left="440" Canvas.Top="282" Stretch="None" Visibility="Hidden"/>
- <Image Source="/FurnaceUI;component/Resources/Images/Controls2/16.png" Canvas.Left="440" Canvas.Top="370" Stretch="None" Visibility="Hidden"/>
- <Image Source="/FurnaceUI;component/Resources/Images/Controls2/16.png" Canvas.Left="440" Canvas.Top="458" Stretch="None" Visibility="Hidden"/>
- <Image Source="/FurnaceUI;component/Resources/Images/Controls2/16.png" Canvas.Left="440" Canvas.Top="544" Stretch="None" Visibility="Hidden"/>-->
- <parts:ATMArmRobotTwo x:Name="ATMArmRobotTwo" WaferRobotStatus="{Binding WaferRobotStatus}" StationPosition="{Binding StationPosition2}" Wafer1="{Binding RobotWafer1}" Wafer2="{Binding WaferRobotWafer2}" Wafer3="{Binding WaferRobotWafer3}"
- Wafer4="{Binding WaferRobotWafer4}" Wafer5="{Binding WaferRobotWafer5}" RobotMoveInfo="{Binding WaferRobotMoveInfo}" Canvas.Left="760" Canvas.Top="616"/>
- <parts:BoatElevatorRobot RobotTarget="{Binding BoatPosition}" BoatStatus="{Binding BoatStatus}" StationPosition="{Binding StationPosition3}" Canvas.Left="1076" Canvas.Top="403" CurrentValue="{Binding BoatCurrentValue}" MinValue="{Binding BoatZMinValue}" MaxValue="{Binding BoatZMaxValue}" Visibility="{Binding IsShowBoatElevatorRobot, Converter={StaticResource bool2VisibilityConverter}}"/>
- <Image Source="/FurnaceUI;component/Resources/Images/Controls3/01.png" Canvas.Left="1020" Canvas.Top="77" Opacity="0.8"/>
- <parts:ATMArmRobot StationPosition="{Binding StationPosition}" CarrierData="{Binding CassetteRobotCarrierData}" CassetteType="{Binding CassetteRobotCarrierData.CarrierType}" WaferCount="{Binding CarrierRobotWaferCount}" RobotMoveInfo="{Binding CassetteRobotMoveInfo}" CassetteRobotStatus="{Binding CassetteRobotStatus}" Canvas.Left="290" Canvas.Top="520"/>
- <!--<Border Grid.Row="9" BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,0,0" Background="{DynamicResource MainFrame_BG}" Padding="5,1" Canvas.Left="824" Canvas.Top="731">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="36"/>
- <RowDefinition Height="36"/>
- </Grid.RowDefinitions>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="45"/>
- <ColumnDefinition Width="60"/>
- <ColumnDefinition Width="45"/>
- <ColumnDefinition Width="60"/>
- <ColumnDefinition Width="45"/>
- <ColumnDefinition Width="60"/>
- </Grid.ColumnDefinitions>
- <Border Grid.Row="0" Grid.Column="0" BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,1,0,0" Background="#FFD0DFF9" IsEnabled="False" Padding="2,1,1,1">
- <TextBlock Text="P" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="10,0,0,0"/>
- </Border>
- <Border Grid.Row="0" Grid.Column="1" BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,1,0,0" Background="{DynamicResource Table_BG_Content}" Padding="2,1,1,1">
- <TextBlock Text="{Binding BoatPWaferCount}" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="2,0,0,0"/>
- </Border>
- <Border Grid.Row="1" Grid.Column="0" BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,1,0,1" Background="#FFD0DFF9" IsEnabled="False" Padding="2,1,1,1">
- <TextBlock Text="M" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="10,0,0,0"/>
- </Border>
- <Border Grid.Row="1" Grid.Column="1" BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,1,0,1" Background="{DynamicResource Table_BG_Content}" Padding="2,1,1,1">
- <TextBlock Text="{Binding BoatMWaferCount}" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="2,0,0,0"/>
- </Border>
- <Border Grid.Row="0" Grid.Column="2" BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,1,0,0" Background="#FFD0DFF9" IsEnabled="False" Padding="2,1,1,1">
- <TextBlock Text="SD" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="10,0,0,0"/>
- </Border>
- <Border Grid.Row="0" Grid.Column="3" BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,1,0,0" Background="{DynamicResource Table_BG_Content}" Padding="2,1,1,1">
- <TextBlock Text="{Binding BoatSDWaferCount}" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="2,0,0,0"/>
- </Border>
- <Border Grid.Row="1" Grid.Column="2" BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,1,0,1" Background="#FFD0DFF9" IsEnabled="False" Padding="2,1,1,1">
- <TextBlock Text="ED" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="10,0,0,0"/>
- </Border>
- <Border Grid.Row="1" Grid.Column="3" BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,1,0,1" Background="{DynamicResource Table_BG_Content}" Padding="2,1,1,1">
- <TextBlock Text="{Binding BoatEDWaferCount}" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="2,0,0,0"/>
- </Border>
- <Border Grid.Row="0" Grid.Column="4" BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,1,0,0" Background="#FFD0DFF9" IsEnabled="False" Padding="2,1,1,1">
- <TextBlock Text="Empty" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="0,0,0,0"/>
- </Border>
- <Border Grid.Row="0" Grid.Column="5" BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,1,1,0" Background="{DynamicResource Table_BG_Content}" Padding="2,1,1,1">
- <TextBlock Text="{Binding BoatEmptyWaferCount}" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="2,0,0,0"/>
- </Border>
- <Border Grid.Row="1" Grid.Column="4" BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,1,0,1" Background="#FFD0DFF9" IsEnabled="False" Padding="2,1,1,1">
- <TextBlock Text="All" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="10,0,0,0"/>
- </Border>
- <Border Grid.Row="1" Grid.Column="5" BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,1,1,1" Background="{DynamicResource Table_BG_Content}" Padding="2,1,1,1">
- <TextBlock Text="{Binding BoatAllWaferCount}" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="2,0,0,0"/>
- </Border>
- </Grid>
- </Border>-->
- </Canvas>
- </Canvas>
- </ContentControl>
- <i:Interaction.Triggers>
- <i:EventTrigger EventName="Click">
- <cal:ActionMessage MethodName="SwitchPage">
- <cal:Parameter Value="TransferMain"/>
- </cal:ActionMessage>
- </i:EventTrigger>
- </i:Interaction.Triggers>
- </Button>
- <Grid Grid.Row="1" Grid.Column="1" Margin="0,0,0,0">
- <Grid.ColumnDefinitions>
- <ColumnDefinition/>
- <ColumnDefinition/>
- </Grid.ColumnDefinitions>
- <Button Visibility="{Binding IsNTPVisibility}" Grid.Row="0" Grid.Column="0" Margin="0,5,5,-11" Style="{StaticResource MainArea_Button}" VerticalContentAlignment="Stretch" HorizontalContentAlignment="Stretch" >
- <ContentControl >
- <Canvas >
- <TextBlock Text="Gas" HorizontalAlignment="Center" Style="{StaticResource TextBlock_Title}" VerticalAlignment="Bottom" FontSize="16" Margin="0" Canvas.Left="60"/>
- <Image Source="/FurnaceUI;component/Resources/images/icons/Gas44.png" Width="40" Canvas.Left="1"/>
- <Grid x:Name="PM1_Info2" Grid.Column="1" Visibility="{Binding IsPMAVisibility}" Height="440" Canvas.Top="42">
- <Grid.RowDefinitions>
- <RowDefinition Height="0"/>
- <RowDefinition Height="20"/>
- <RowDefinition Height="28"/>
- <RowDefinition Height="28"/>
- <RowDefinition Height="28"/>
- <RowDefinition Height="28"/>
- <RowDefinition Height="28"/>
- <RowDefinition Height="28"/>
- <RowDefinition Height="28"/>
- <RowDefinition Height="28"/>
- <RowDefinition Height="28"/>
- <RowDefinition Height="28"/>
- <RowDefinition Height="28"/>
- <RowDefinition Height="28"/>
- <RowDefinition Height="28"/>
- <RowDefinition Height="28"/>
- <RowDefinition Height="28"/>
- </Grid.RowDefinitions>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="100"/>
- <ColumnDefinition Width="60"/>
- <ColumnDefinition Width="60"/>
- <ColumnDefinition Width="60"/>
- </Grid.ColumnDefinitions>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="1" Grid.Column="0" Padding="5,1,5,1">
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="2" Grid.Column="0" Padding="5,1,5,1">
- <Label Content="{Binding VG21Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="16" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="3" Grid.Column="0" Padding="5,1,5,1">
- <Label Content="{Binding VG22Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="16" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="4" Grid.Column="0" Padding="5,1,5,1">
- <Label Content="{Binding MFC1Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="16" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="5" Grid.Column="0" Padding="5,1,5,1">
- <Label Content="{Binding MFC2Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="16" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="6" Grid.Column="0" Padding="5,1,5,1">
- <Label Content="{Binding MFC3Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="16" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="7" Grid.Column="0" Padding="5,1,5,1">
- <Label Content="{Binding MFC4Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="16" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="8" Grid.Column="0" Padding="5,1,5,1">
- <Label Content="{Binding MFC5Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="16" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="9" Grid.Column="0" Padding="5,1,5,1">
- <Label Content="{Binding MFC6Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="16" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="10" Grid.Column="0" Padding="5,1,5,1">
- <Label Content="{Binding MFC7Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="16" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="11" Grid.Column="0" Padding="5,1,5,1">
- <Label Content="{Binding MFC8Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="16" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="12" Grid.Column="0" Padding="5,1,5,1">
- <Label Content="{Binding MFC9Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="16" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="13" Grid.Column="0" Padding="5,1,5,1">
- <Label Content="{Binding MFC10Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="16" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="14" Grid.Column="0" Padding="5,1,5,1">
- <Label Content="{Binding MFC11Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="16" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="15" Grid.Column="0" Padding="5,1,5,1">
- <Label Content="{Binding MFC12Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="16" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="16" Grid.Column="0" Padding="5,1,5,1">
- <Label Content="{Binding MFC51Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="16" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,1,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="1" Grid.Column="1">
- <TextBlock Text="Actual" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,1,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="1" Grid.Column="2">
- <TextBlock Text="Set" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="2" Grid.Column="1">
- <TextBlock Text="{Binding VG21Data.FeedBack,StringFormat={}{0:f3}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="2" Grid.Column="2">
- <TextBlock Text="{Binding VG21Data.SetPoint,StringFormat={}{0:f3}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="3" Grid.Column="1">
- <TextBlock Text="{Binding VG22Data.FeedBack,StringFormat={}{0:f3}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="3" Grid.Column="2">
- <TextBlock Text="{Binding VG22Data.SetPoint,StringFormat={}{0:f3}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="4" Grid.Column="1">
- <TextBlock Text="{Binding MFC1Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="4" Grid.Column="2">
- <TextBlock Text="{Binding MFC1Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="5" Grid.Column="1">
- <TextBlock Text="{Binding MFC2Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="5" Grid.Column="2">
- <TextBlock Text="{Binding MFC2Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="6" Grid.Column="1">
- <TextBlock Text="{Binding MFC3Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="6" Grid.Column="2">
- <TextBlock Text="{Binding MFC3Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="7" Grid.Column="1">
- <TextBlock Text="{Binding MFC4Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="7" Grid.Column="2">
- <TextBlock Text="{Binding MFC4Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="8" Grid.Column="1">
- <TextBlock Text="{Binding MFC5Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="8" Grid.Column="2">
- <TextBlock Text="{Binding MFC5Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="9" Grid.Column="1">
- <TextBlock Text="{Binding MFC6Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="9" Grid.Column="2">
- <TextBlock Text="{Binding MFC6Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="10" Grid.Column="1">
- <TextBlock Text="{Binding MFC7Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="10" Grid.Column="2">
- <TextBlock Text="{Binding MFC7Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="11" Grid.Column="1">
- <TextBlock Text="{Binding MFC8Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="11" Grid.Column="2">
- <TextBlock Text="{Binding MFC8Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="12" Grid.Column="1">
- <TextBlock Text="{Binding MFC9Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="12" Grid.Column="2">
- <TextBlock Text="{Binding MFC9Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="13" Grid.Column="1">
- <TextBlock Text="{Binding MFC10Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="13" Grid.Column="2">
- <TextBlock Text="{Binding MFC10Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="14" Grid.Column="1">
- <TextBlock Text="{Binding MFC11Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="14" Grid.Column="2">
- <TextBlock Text="{Binding MFC11Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="15" Grid.Column="1">
- <TextBlock Text="{Binding MFC12Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="15" Grid.Column="2">
- <TextBlock Text="{Binding MFC12Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="16" Grid.Column="1">
- <TextBlock Text="{Binding MFC51Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="16" Grid.Column="2">
- <TextBlock Text="{Binding MFC51Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Label Content="{Binding DefaultUnit}" Grid.Row="2" Grid.Column="3"/>
- <Label Content="{Binding DefaultUnit}" Grid.Row="3" Grid.Column="3"/>
- <Label Content="{Binding MFC1Data.Unit}" Grid.Row="4" Grid.Column="3"/>
- <Label Content="{Binding MFC2Data.Unit}" Grid.Row="5" Grid.Column="3"/>
- <Label Content="{Binding MFC3Data.Unit}" Grid.Row="6" Grid.Column="3"/>
- <Label Content="{Binding MFC4Data.Unit}" Grid.Row="7" Grid.Column="3"/>
- <Label Content="{Binding MFC5Data.Unit}" Grid.Row="8" Grid.Column="3"/>
- <Label Content="{Binding MFC6Data.Unit}" Grid.Row="9" Grid.Column="3"/>
- <Label Content="{Binding MFC7Data.Unit}" Grid.Row="10" Grid.Column="3"/>
- <Label Content="{Binding MFC8Data.Unit}" Grid.Row="11" Grid.Column="3"/>
- <Label Content="{Binding MFC9Data.Unit}" Grid.Row="12" Grid.Column="3"/>
- <Label Content="{Binding MFC10Data.Unit}" Grid.Row="13" Grid.Column="3"/>
- <Label Content="{Binding MFC11Data.Unit}" Grid.Row="14" Grid.Column="3"/>
- <Label Content="{Binding MFC12Data.Unit}" Grid.Row="15" Grid.Column="3"/>
- <Label Content="{Binding MFC51Data.Unit}" Grid.Row="16" Grid.Column="3"/>
- <Grid.Resources>
- <Style TargetType="Label">
- <Setter Property="HorizontalContentAlignment" Value="Left"/>
- <Setter Property="VerticalContentAlignment" Value="Center"/>
- </Style>
- </Grid.Resources>
- </Grid>
- </Canvas>
-
- </ContentControl>
- <i:Interaction.Triggers>
- <i:EventTrigger EventName="Click">
- <cal:ActionMessage MethodName="SwitchPage">
- <cal:Parameter Value="Gas"/>
- </cal:ActionMessage>
- </i:EventTrigger>
- </i:Interaction.Triggers>
- </Button>
- <Button Visibility="{Binding IsSiBCNVisibility}" Grid.Row="0" Grid.Column="0" Margin="0,5,5,-11" Style="{StaticResource MainArea_Button}" VerticalContentAlignment="Stretch" HorizontalContentAlignment="Stretch" >
- <ContentControl >
- <Canvas >
- <TextBlock Text="Gas" HorizontalAlignment="Center" Style="{StaticResource TextBlock_Title}" VerticalAlignment="Bottom" FontSize="16" Margin="0" Canvas.Left="60"/>
- <Image Source="/FurnaceUI;component/Resources/images/icons/Gas44.png" Width="30" Canvas.Left="1"/>
- <Grid x:Name="PM1_Info3" Grid.Column="1" Visibility="{Binding IsPMAVisibility}" Height="460" Canvas.Top="30">
- <Grid.RowDefinitions>
- <RowDefinition Height="0"/>
- <RowDefinition Height="20"/>
- <RowDefinition Height="23"/>
- <RowDefinition Height="23"/>
- <RowDefinition Height="23"/>
- <RowDefinition Height="23"/>
- <RowDefinition Height="23"/>
- <RowDefinition Height="23"/>
- <RowDefinition Height="23"/>
- <RowDefinition Height="23"/>
- <RowDefinition Height="23"/>
- <RowDefinition Height="23"/>
- <RowDefinition Height="23"/>
- <RowDefinition Height="23"/>
- <RowDefinition Height="23"/>
- <RowDefinition Height="23"/>
- <RowDefinition Height="23"/>
- <RowDefinition Height="23"/>
- <RowDefinition Height="23"/>
- <RowDefinition Height="23"/>
- <RowDefinition Height="23"/>
- </Grid.RowDefinitions>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="100"/>
- <ColumnDefinition Width="60"/>
- <ColumnDefinition Width="60"/>
- <ColumnDefinition Width="60"/>
- </Grid.ColumnDefinitions>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="1" Grid.Column="0">
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="2" Grid.Column="0" >
- <Label Content="{Binding VG21Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="3" Grid.Column="0" >
- <Label Content="{Binding VG22Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="4" Grid.Column="0" >
- <Label Content="{Binding MFC1Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="5" Grid.Column="0" >
- <Label Content="{Binding MFC2Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="6" Grid.Column="0" >
- <Label Content="{Binding MFC3Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="7" Grid.Column="0" >
- <Label Content="{Binding MFC4Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="8" Grid.Column="0" >
- <Label Content="{Binding MFC5Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="9" Grid.Column="0" >
- <Label Content="{Binding MFC6Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="10" Grid.Column="0" >
- <Label Content="{Binding MFC7Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="11" Grid.Column="0" >
- <Label Content="{Binding MFC8Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="12" Grid.Column="0" >
- <Label Content="{Binding MFC9Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="13" Grid.Column="0" >
- <Label Content="{Binding MFC10Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="14" Grid.Column="0" >
- <Label Content="{Binding MFC11Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="15" Grid.Column="0" >
- <Label Content="{Binding MFC12Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="16" Grid.Column="0" >
- <Label Content="{Binding MFC13Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="17" Grid.Column="0" >
- <Label Content="{Binding MFC14Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="18" Grid.Column="0" >
- <Label Content="{Binding MFC15Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="19" Grid.Column="0" >
- <Label Content="{Binding MFC16Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="20" Grid.Column="0" >
- <Label Content="{Binding MFC51Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,1,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="1" Grid.Column="1">
- <TextBlock Text="Actual" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,1,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="1" Grid.Column="2">
- <TextBlock Text="Set" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="2" Grid.Column="1">
- <TextBlock Text="{Binding VG21Data.FeedBack,StringFormat={}{0:f3}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="2" Grid.Column="2">
- <TextBlock Text="{Binding VG21Data.SetPoint,StringFormat={}{0:f3}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="3" Grid.Column="1">
- <TextBlock Text="{Binding VG22Data.FeedBack,StringFormat={}{0:f3}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="3" Grid.Column="2">
- <TextBlock Text="{Binding VG22Data.SetPoint,StringFormat={}{0:f3}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="4" Grid.Column="1">
- <TextBlock Text="{Binding MFC1Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="4" Grid.Column="2">
- <TextBlock Text="{Binding MFC1Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="5" Grid.Column="1">
- <TextBlock Text="{Binding MFC2Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="5" Grid.Column="2">
- <TextBlock Text="{Binding MFC2Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="6" Grid.Column="1">
- <TextBlock Text="{Binding MFC3Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="6" Grid.Column="2">
- <TextBlock Text="{Binding MFC3Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="7" Grid.Column="1">
- <TextBlock Text="{Binding MFC4Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="7" Grid.Column="2">
- <TextBlock Text="{Binding MFC4Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="8" Grid.Column="1">
- <TextBlock Text="{Binding MFC5Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="8" Grid.Column="2">
- <TextBlock Text="{Binding MFC5Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="9" Grid.Column="1">
- <TextBlock Text="{Binding MFC6Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="9" Grid.Column="2">
- <TextBlock Text="{Binding MFC6Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="10" Grid.Column="1">
- <TextBlock Text="{Binding MFC7Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="10" Grid.Column="2">
- <TextBlock Text="{Binding MFC7Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="11" Grid.Column="1">
- <TextBlock Text="{Binding MFC8Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="11" Grid.Column="2">
- <TextBlock Text="{Binding MFC8Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="12" Grid.Column="1">
- <TextBlock Text="{Binding MFC9Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="12" Grid.Column="2">
- <TextBlock Text="{Binding MFC9Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="13" Grid.Column="1">
- <TextBlock Text="{Binding MFC10Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="13" Grid.Column="2">
- <TextBlock Text="{Binding MFC10Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="14" Grid.Column="1">
- <TextBlock Text="{Binding MFC11Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="14" Grid.Column="2">
- <TextBlock Text="{Binding MFC11Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="15" Grid.Column="1">
- <TextBlock Text="{Binding MFC12Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="15" Grid.Column="2">
- <TextBlock Text="{Binding MFC12Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="16" Grid.Column="1">
- <TextBlock Text="{Binding MFC13Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="16" Grid.Column="2">
- <TextBlock Text="{Binding MFC13Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="17" Grid.Column="1">
- <TextBlock Text="{Binding MFC14Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="17" Grid.Column="2">
- <TextBlock Text="{Binding MFC14Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="18" Grid.Column="1">
- <TextBlock Text="{Binding MFC15Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="18" Grid.Column="2">
- <TextBlock Text="{Binding MFC15Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="19" Grid.Column="1">
- <TextBlock Text="{Binding MFC16Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="19" Grid.Column="2">
- <TextBlock Text="{Binding MFC16Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="20" Grid.Column="1">
- <TextBlock Text="{Binding MFC51Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="20" Grid.Column="2">
- <TextBlock Text="{Binding MFC51Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Label Content="{Binding DefaultUnit}" Grid.Row="2" Grid.Column="3"/>
- <Label Content="{Binding DefaultUnit}" Grid.Row="3" Grid.Column="3"/>
- <Label Content="{Binding MFC1Data.Unit}" Grid.Row="4" Grid.Column="3"/>
- <Label Content="{Binding MFC2Data.Unit}" Grid.Row="5" Grid.Column="3"/>
- <Label Content="{Binding MFC3Data.Unit}" Grid.Row="6" Grid.Column="3"/>
- <Label Content="{Binding MFC4Data.Unit}" Grid.Row="7" Grid.Column="3"/>
- <Label Content="{Binding MFC5Data.Unit}" Grid.Row="8" Grid.Column="3"/>
- <Label Content="{Binding MFC6Data.Unit}" Grid.Row="9" Grid.Column="3"/>
- <Label Content="{Binding MFC7Data.Unit}" Grid.Row="10" Grid.Column="3"/>
- <Label Content="{Binding MFC8Data.Unit}" Grid.Row="11" Grid.Column="3"/>
- <Label Content="{Binding MFC9Data.Unit}" Grid.Row="12" Grid.Column="3"/>
- <Label Content="{Binding MFC10Data.Unit}" Grid.Row="13" Grid.Column="3"/>
- <Label Content="{Binding MFC11Data.Unit}" Grid.Row="14" Grid.Column="3"/>
- <Label Content="{Binding MFC12Data.Unit}" Grid.Row="15" Grid.Column="3"/>
- <Label Content="{Binding MFC13Data.Unit}" Grid.Row="16" Grid.Column="3"/>
- <Label Content="{Binding MFC14Data.Unit}" Grid.Row="17" Grid.Column="3"/>
- <Label Content="{Binding MFC15Data.Unit}" Grid.Row="18" Grid.Column="3"/>
- <Label Content="{Binding MFC16Data.Unit}" Grid.Row="19" Grid.Column="3"/>
- <Label Content="{Binding MFC51Data.Unit}" Grid.Row="20" Grid.Column="3"/>
- <Grid.Resources>
- <Style TargetType="Label">
- <Setter Property="HorizontalContentAlignment" Value="Left"/>
- <Setter Property="VerticalContentAlignment" Value="Center"/>
- </Style>
- </Grid.Resources>
- </Grid>
- </Canvas>
-
- </ContentControl>
- <i:Interaction.Triggers>
- <i:EventTrigger EventName="Click">
- <cal:ActionMessage MethodName="SwitchPage">
- <cal:Parameter Value="Gas"/>
- </cal:ActionMessage>
- </i:EventTrigger>
- </i:Interaction.Triggers>
- </Button>
- <Button Visibility="{Binding IsNTP02Visibility}" Grid.Row="0" Grid.Column="0" Margin="0,5,5,-11" Style="{StaticResource MainArea_Button}" VerticalContentAlignment="Stretch" HorizontalContentAlignment="Stretch" >
- <ContentControl >
- <Canvas >
- <TextBlock Text="Gas" HorizontalAlignment="Center" Style="{StaticResource TextBlock_Title}" VerticalAlignment="Bottom" FontSize="16" Margin="0" Canvas.Left="60"/>
- <Image Source="/FurnaceUI;component/Resources/images/icons/Gas44.png" Width="30" Canvas.Left="1"/>
- <Grid x:Name="PM1_Info5" Grid.Column="1" Visibility="{Binding IsPMAVisibility}" Height="460" Canvas.Top="30">
- <Grid.RowDefinitions>
- <RowDefinition Height="0"/>
- <RowDefinition Height="20"/>
- <RowDefinition Height="23"/>
- <RowDefinition Height="23"/>
- <RowDefinition Height="23"/>
- <RowDefinition Height="23"/>
- <RowDefinition Height="23"/>
- <RowDefinition Height="23"/>
- <RowDefinition Height="23"/>
- <RowDefinition Height="23"/>
- <RowDefinition Height="23"/>
- <RowDefinition Height="23"/>
- <RowDefinition Height="23"/>
- <RowDefinition Height="23"/>
- <RowDefinition Height="23"/>
- <RowDefinition Height="23"/>
- <RowDefinition Height="23"/>
- <RowDefinition Height="23"/>
- <RowDefinition Height="23"/>
- <RowDefinition Height="23"/>
- <RowDefinition Height="23"/>
- </Grid.RowDefinitions>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="100"/>
- <ColumnDefinition Width="60"/>
- <ColumnDefinition Width="60"/>
- <ColumnDefinition Width="60"/>
- </Grid.ColumnDefinitions>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="1" Grid.Column="0">
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="2" Grid.Column="0" >
- <Label Content="{Binding VG21Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="3" Grid.Column="0" >
- <Label Content="{Binding VG22Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="4" Grid.Column="0" >
- <Label Content="{Binding MFC1Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="5" Grid.Column="0" >
- <Label Content="{Binding MFC2Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="6" Grid.Column="0" >
- <Label Content="{Binding MFC3Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="7" Grid.Column="0" >
- <Label Content="{Binding MFC4Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="8" Grid.Column="0" >
- <Label Content="{Binding MFC5Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="9" Grid.Column="0" >
- <Label Content="{Binding MFC6Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="10" Grid.Column="0" >
- <Label Content="{Binding MFC7Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="11" Grid.Column="0" >
- <Label Content="{Binding MFC8Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="12" Grid.Column="0" >
- <Label Content="{Binding MFC9Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="13" Grid.Column="0" >
- <Label Content="{Binding MFC10Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="14" Grid.Column="0" >
- <Label Content="{Binding MFC11Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="15" Grid.Column="0" >
- <Label Content="{Binding MFC12Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="16" Grid.Column="0" >
- <Label Content="{Binding MFC13Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="17" Grid.Column="0" >
- <Label Content="{Binding MFC14Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="18" Grid.Column="0" >
- <Label Content="{Binding MFC15Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="19" Grid.Column="0" >
- <Label Content="{Binding MFC16Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="20" Grid.Column="0" >
- <Label Content="{Binding MFC51Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,1,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="1" Grid.Column="1">
- <TextBlock Text="Actual" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,1,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="1" Grid.Column="2">
- <TextBlock Text="Set" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="2" Grid.Column="1">
- <TextBlock Text="{Binding VG21Data.FeedBack,StringFormat={}{0:f3}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="2" Grid.Column="2">
- <TextBlock Text="{Binding VG21Data.SetPoint,StringFormat={}{0:f3}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="3" Grid.Column="1">
- <TextBlock Text="{Binding VG22Data.FeedBack,StringFormat={}{0:f3}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="3" Grid.Column="2">
- <TextBlock Text="{Binding VG22Data.SetPoint,StringFormat={}{0:f3}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="4" Grid.Column="1">
- <TextBlock Text="{Binding MFC1Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="4" Grid.Column="2">
- <TextBlock Text="{Binding MFC1Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="5" Grid.Column="1">
- <TextBlock Text="{Binding MFC2Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="5" Grid.Column="2">
- <TextBlock Text="{Binding MFC2Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="6" Grid.Column="1">
- <TextBlock Text="{Binding MFC3Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="6" Grid.Column="2">
- <TextBlock Text="{Binding MFC3Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="7" Grid.Column="1">
- <TextBlock Text="{Binding MFC4Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="7" Grid.Column="2">
- <TextBlock Text="{Binding MFC4Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="8" Grid.Column="1">
- <TextBlock Text="{Binding MFC5Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="8" Grid.Column="2">
- <TextBlock Text="{Binding MFC5Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="9" Grid.Column="1">
- <TextBlock Text="{Binding MFC6Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="9" Grid.Column="2">
- <TextBlock Text="{Binding MFC6Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="10" Grid.Column="1">
- <TextBlock Text="{Binding MFC7Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="10" Grid.Column="2">
- <TextBlock Text="{Binding MFC7Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="11" Grid.Column="1">
- <TextBlock Text="{Binding MFC8Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="11" Grid.Column="2">
- <TextBlock Text="{Binding MFC8Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="12" Grid.Column="1">
- <TextBlock Text="{Binding MFC9Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="12" Grid.Column="2">
- <TextBlock Text="{Binding MFC9Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="13" Grid.Column="1">
- <TextBlock Text="{Binding MFC10Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="13" Grid.Column="2">
- <TextBlock Text="{Binding MFC10Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="14" Grid.Column="1">
- <TextBlock Text="{Binding MFC11Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="14" Grid.Column="2">
- <TextBlock Text="{Binding MFC11Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="15" Grid.Column="1">
- <TextBlock Text="{Binding MFC12Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="15" Grid.Column="2">
- <TextBlock Text="{Binding MFC12Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="16" Grid.Column="1">
- <TextBlock Text="{Binding MFC13Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="16" Grid.Column="2">
- <TextBlock Text="{Binding MFC13Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="17" Grid.Column="1">
- <TextBlock Text="{Binding MFC14Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="17" Grid.Column="2">
- <TextBlock Text="{Binding MFC14Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="18" Grid.Column="1">
- <TextBlock Text="{Binding MFC15Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="18" Grid.Column="2">
- <TextBlock Text="{Binding MFC15Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="19" Grid.Column="1">
- <TextBlock Text="{Binding MFC16Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="19" Grid.Column="2">
- <TextBlock Text="{Binding MFC16Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="20" Grid.Column="1">
- <TextBlock Text="{Binding MFC51Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="20" Grid.Column="2">
- <TextBlock Text="{Binding MFC51Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Label Content="{Binding DefaultUnit}" Grid.Row="2" Grid.Column="3"/>
- <Label Content="{Binding DefaultUnit}" Grid.Row="3" Grid.Column="3"/>
- <Label Content="{Binding MFC1Data.Unit}" Grid.Row="4" Grid.Column="3"/>
- <Label Content="{Binding MFC2Data.Unit}" Grid.Row="5" Grid.Column="3"/>
- <Label Content="{Binding MFC3Data.Unit}" Grid.Row="6" Grid.Column="3"/>
- <Label Content="{Binding MFC4Data.Unit}" Grid.Row="7" Grid.Column="3"/>
- <Label Content="{Binding MFC5Data.Unit}" Grid.Row="8" Grid.Column="3"/>
- <Label Content="{Binding MFC6Data.Unit}" Grid.Row="9" Grid.Column="3"/>
- <Label Content="{Binding MFC7Data.Unit}" Grid.Row="10" Grid.Column="3"/>
- <Label Content="{Binding MFC8Data.Unit}" Grid.Row="11" Grid.Column="3"/>
- <Label Content="{Binding MFC9Data.Unit}" Grid.Row="12" Grid.Column="3"/>
- <Label Content="{Binding MFC10Data.Unit}" Grid.Row="13" Grid.Column="3"/>
- <Label Content="{Binding MFC11Data.Unit}" Grid.Row="14" Grid.Column="3"/>
- <Label Content="{Binding MFC12Data.Unit}" Grid.Row="15" Grid.Column="3"/>
- <Label Content="{Binding MFC13Data.Unit}" Grid.Row="16" Grid.Column="3"/>
- <Label Content="{Binding MFC14Data.Unit}" Grid.Row="17" Grid.Column="3"/>
- <Label Content="{Binding MFC15Data.Unit}" Grid.Row="18" Grid.Column="3"/>
- <Label Content="{Binding MFC16Data.Unit}" Grid.Row="19" Grid.Column="3"/>
- <Label Content="{Binding MFC51Data.Unit}" Grid.Row="20" Grid.Column="3"/>
- <Grid.Resources>
- <Style TargetType="Label">
- <Setter Property="HorizontalContentAlignment" Value="Left"/>
- <Setter Property="VerticalContentAlignment" Value="Center"/>
- </Style>
- </Grid.Resources>
- </Grid>
- </Canvas>
- </ContentControl>
- <i:Interaction.Triggers>
- <i:EventTrigger EventName="Click">
- <cal:ActionMessage MethodName="SwitchPage">
- <cal:Parameter Value="Gas"/>
- </cal:ActionMessage>
- </i:EventTrigger>
- </i:Interaction.Triggers>
- </Button>
- <Button Visibility="{Binding IsELKVisibility}" Grid.Row="0" Grid.Column="0" Margin="0,5,5,-11" Style="{StaticResource MainArea_Button}" VerticalContentAlignment="Stretch" HorizontalContentAlignment="Stretch" >
- <ContentControl >
-
- <Canvas >
- <TextBlock Text="Gas" HorizontalAlignment="Center" Style="{StaticResource TextBlock_Title}" VerticalAlignment="Bottom" FontSize="16" Margin="0" Canvas.Left="60"/>
- <Image Source="/FurnaceUI;component/Resources/images/icons/Gas44.png" Width="30" Canvas.Left="1"/>
- <Grid x:Name="PM1_Info4" Grid.Column="1" Visibility="{Binding IsPMAVisibility}" Height="480" Canvas.Top="15">
- <Grid.RowDefinitions>
- <RowDefinition Height="0"/>
- <RowDefinition Height="20"/>
- <RowDefinition Height="23"/>
- <RowDefinition Height="23"/>
- <RowDefinition Height="23"/>
- <RowDefinition Height="23"/>
- <RowDefinition Height="23"/>
- <RowDefinition Height="23"/>
- <RowDefinition Height="23"/>
- <RowDefinition Height="23"/>
- <RowDefinition Height="23"/>
- <RowDefinition Height="23"/>
- <RowDefinition Height="23"/>
- <RowDefinition Height="23"/>
- <RowDefinition Height="23"/>
- <RowDefinition Height="23"/>
- <RowDefinition Height="23"/>
- <RowDefinition Height="23"/>
- <RowDefinition Height="23"/>
- <RowDefinition Height="23"/>
- <RowDefinition Height="23"/>
- <RowDefinition Height="23"/>
- </Grid.RowDefinitions>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="100"/>
- <ColumnDefinition Width="60"/>
- <ColumnDefinition Width="60"/>
- <ColumnDefinition Width="60"/>
- </Grid.ColumnDefinitions>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Grid.Row="1" Grid.Column="0">
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="2" Grid.Column="0" >
- <Label Content="{Binding VG21Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="3" Grid.Column="0" >
- <Label Content="{Binding VG22Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="4" Grid.Column="0" >
- <Label Content="{Binding MFC1Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="5" Grid.Column="0" >
- <Label Content="{Binding MFC2Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="6" Grid.Column="0" >
- <Label Content="{Binding MFC3Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="7" Grid.Column="0" >
- <Label Content="{Binding MFC4Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="8" Grid.Column="0" >
- <Label Content="{Binding MFC5Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="9" Grid.Column="0" >
- <Label Content="{Binding MFC6Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="10" Grid.Column="0" >
- <Label Content="{Binding MFC7Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="11" Grid.Column="0" >
- <Label Content="{Binding MFC8Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="12" Grid.Column="0" >
- <Label Content="{Binding MFC9Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="13" Grid.Column="0" >
- <Label Content="{Binding MFC10Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="14" Grid.Column="0" >
- <Label Content="{Binding MFC11Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="15" Grid.Column="0" >
- <Label Content="{Binding MFC12Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="16" Grid.Column="0" >
- <Label Content="{Binding MFC13Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="17" Grid.Column="0" >
- <Label Content="{Binding MFC16Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="18" Grid.Column="0" >
- <Label Content="{Binding MFC17Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="19" Grid.Column="0" >
- <Label Content="{Binding MFC31Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="20" Grid.Column="0" >
- <Label Content="{Binding MFC32Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="21" Grid.Column="0" >
- <Label Content="{Binding MFC51Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,1,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="1" Grid.Column="1">
- <TextBlock Text="Actual" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,1,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="1" Grid.Column="2">
- <TextBlock Text="Set" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="2" Grid.Column="1">
- <TextBlock Text="{Binding VG21Data.FeedBack,StringFormat={}{0:f3}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="2" Grid.Column="2">
- <TextBlock Text="{Binding VG21Data.SetPoint,StringFormat={}{0:f3}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="3" Grid.Column="1">
- <TextBlock Text="{Binding VG22Data.FeedBack,StringFormat={}{0:f3}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="3" Grid.Column="2">
- <TextBlock Text="{Binding VG22Data.SetPoint,StringFormat={}{0:f3}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="4" Grid.Column="1">
- <TextBlock Text="{Binding MFC1Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="4" Grid.Column="2">
- <TextBlock Text="{Binding MFC1Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="5" Grid.Column="1">
- <TextBlock Text="{Binding MFC2Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="5" Grid.Column="2">
- <TextBlock Text="{Binding MFC2Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="6" Grid.Column="1">
- <TextBlock Text="{Binding MFC3Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="6" Grid.Column="2">
- <TextBlock Text="{Binding MFC3Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="7" Grid.Column="1">
- <TextBlock Text="{Binding MFC4Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="7" Grid.Column="2">
- <TextBlock Text="{Binding MFC4Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="8" Grid.Column="1">
- <TextBlock Text="{Binding MFC5Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="8" Grid.Column="2">
- <TextBlock Text="{Binding MFC5Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="9" Grid.Column="1">
- <TextBlock Text="{Binding MFC6Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="9" Grid.Column="2">
- <TextBlock Text="{Binding MFC6Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="10" Grid.Column="1">
- <TextBlock Text="{Binding MFC7Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="10" Grid.Column="2">
- <TextBlock Text="{Binding MFC7Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="11" Grid.Column="1">
- <TextBlock Text="{Binding MFC8Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="11" Grid.Column="2">
- <TextBlock Text="{Binding MFC8Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="12" Grid.Column="1">
- <TextBlock Text="{Binding MFC9Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="12" Grid.Column="2">
- <TextBlock Text="{Binding MFC9Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="13" Grid.Column="1">
- <TextBlock Text="{Binding MFC10Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="13" Grid.Column="2">
- <TextBlock Text="{Binding MFC10Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="14" Grid.Column="1">
- <TextBlock Text="{Binding MFC11Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="14" Grid.Column="2">
- <TextBlock Text="{Binding MFC11Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="15" Grid.Column="1">
- <TextBlock Text="{Binding MFC12Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="15" Grid.Column="2">
- <TextBlock Text="{Binding MFC12Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="16" Grid.Column="1">
- <TextBlock Text="{Binding MFC13Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="16" Grid.Column="2">
- <TextBlock Text="{Binding MFC13Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="17" Grid.Column="1">
- <TextBlock Text="{Binding MFC16Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="17" Grid.Column="2">
- <TextBlock Text="{Binding MFC16Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="18" Grid.Column="1">
- <TextBlock Text="{Binding MFC17Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="18" Grid.Column="2">
- <TextBlock Text="{Binding MFC17Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="19" Grid.Column="1">
- <TextBlock Text="{Binding MFC31Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="19" Grid.Column="2">
- <TextBlock Text="{Binding MFC31Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="20" Grid.Column="1">
- <TextBlock Text="{Binding MFC32Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="20" Grid.Column="2">
- <TextBlock Text="{Binding MFC32Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="21" Grid.Column="1">
- <TextBlock Text="{Binding MFC51Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="21" Grid.Column="2">
- <TextBlock Text="{Binding MFC51Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
- </Border>
-
- <Label Content="{Binding DefaultUnit}" Grid.Row="2" Grid.Column="3"/>
- <Label Content="{Binding DefaultUnit}" Grid.Row="3" Grid.Column="3"/>
- <Label Content="{Binding MFC1Data.Unit}" Grid.Row="4" Grid.Column="3"/>
- <Label Content="{Binding MFC2Data.Unit}" Grid.Row="5" Grid.Column="3"/>
- <Label Content="{Binding MFC3Data.Unit}" Grid.Row="6" Grid.Column="3"/>
- <Label Content="{Binding MFC4Data.Unit}" Grid.Row="7" Grid.Column="3"/>
- <Label Content="{Binding MFC5Data.Unit}" Grid.Row="8" Grid.Column="3"/>
- <Label Content="{Binding MFC6Data.Unit}" Grid.Row="9" Grid.Column="3"/>
- <Label Content="{Binding MFC7Data.Unit}" Grid.Row="10" Grid.Column="3"/>
- <Label Content="{Binding MFC8Data.Unit}" Grid.Row="11" Grid.Column="3"/>
- <Label Content="{Binding MFC9Data.Unit}" Grid.Row="12" Grid.Column="3"/>
- <Label Content="{Binding MFC10Data.Unit}" Grid.Row="13" Grid.Column="3"/>
- <Label Content="{Binding MFC11Data.Unit}" Grid.Row="14" Grid.Column="3"/>
- <Label Content="{Binding MFC12Data.Unit}" Grid.Row="15" Grid.Column="3"/>
- <Label Content="{Binding MFC13Data.Unit}" Grid.Row="16" Grid.Column="3"/>
- <Label Content="{Binding MFC16Data.Unit}" Grid.Row="17" Grid.Column="3"/>
- <Label Content="{Binding MFC17Data.Unit}" Grid.Row="18" Grid.Column="3"/>
- <Label Content="{Binding MFC31Data.Unit}" Grid.Row="19" Grid.Column="3"/>
- <Label Content="{Binding MFC32Data.Unit}" Grid.Row="20" Grid.Column="3"/>
- <Label Content="{Binding MFC51Data.Unit}" Grid.Row="21" Grid.Column="3"/>
- <Grid.Resources>
- <Style TargetType="Label">
- <Setter Property="HorizontalContentAlignment" Value="Left"/>
- <Setter Property="VerticalContentAlignment" Value="Center"/>
- </Style>
- </Grid.Resources>
- </Grid>
- </Canvas>
- </ContentControl>
- <i:Interaction.Triggers>
- <i:EventTrigger EventName="Click">
- <cal:ActionMessage MethodName="SwitchPage">
- <cal:Parameter Value="Gas"/>
- </cal:ActionMessage>
- </i:EventTrigger>
- </i:Interaction.Triggers>
- </Button>
- <Button Grid.Row="0" Grid.Column="1" Margin="0,5,0,-11" Style="{StaticResource MainArea_Button}" VerticalContentAlignment="Stretch" HorizontalContentAlignment="Stretch" >
- <ContentControl>
- <Canvas>
- <TextBlock Text="N2 Purge" Canvas.Left="60" HorizontalAlignment="Center" Style="{StaticResource TextBlock_Title}" VerticalAlignment="Bottom" FontSize="16"/>
- <Image Source="/FurnaceUI;component/Resources/images/icons/Valve44.png" Width="40" Canvas.Left="0"/>
- <Grid Canvas.Top="45" Height="420">
- <Grid.RowDefinitions>
- <RowDefinition/>
- <RowDefinition/>
- <RowDefinition/>
- <RowDefinition/>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <Grid Grid.Row="0" Width="255">
- <Grid.RowDefinitions>
- <RowDefinition/>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <TextBlock Style="{StaticResource TextBlock_Grid}" Grid.ColumnSpan="2" Text="N2Purge Status"/>
- <Border Grid.Row="1" Background="#DAE5F1" BorderBrush="Gray" BorderThickness="1,1,1,1" Margin="0,0,-5,0" >
- <TextBlock Background="#DAE5F1" HorizontalAlignment="Center" VerticalAlignment="Center" IsEnabled="False" ></TextBlock>
- </Border>
- </Grid>
- <Grid Grid.Row="1">
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="24*"/>
- <ColumnDefinition Width="61*"/>
- </Grid.ColumnDefinitions>
- <Grid.RowDefinitions>
- <RowDefinition/>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <TextBlock Style="{StaticResource TextBlock_Grid}" Text="O2 Density CtrlStatus" Grid.ColumnSpan="2" Margin="0,0,2,0"/>
- <Border Grid.Row="1" Grid.ColumnSpan="2" Background="#DAE5F1" BorderBrush="Gray" BorderThickness="1,1,1,1" >
- <TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" Background="#DAE5F1" IsEnabled="False" />
- </Border>
- </Grid>
- <Grid Grid.Row="2" Grid.RowSpan="2">
- <Grid.RowDefinitions>
- <RowDefinition/>
- <RowDefinition/>
- <RowDefinition/>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <TextBlock Style="{StaticResource TextBlock_Grid}" Text="O2 Density(ppm)"/>
- <Border Grid.Row="1" Grid.ColumnSpan="2" Background="#DAE5F1" BorderBrush="Gray" BorderThickness="1,1,1,1" >
- <TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" Background="#DAE5F1" IsEnabled="False" Margin="4"/>
- </Border>
- <StackPanel Margin="0,2,0,2" Grid.Row="2" Orientation="Horizontal" HorizontalAlignment="Center">
- <Border Background="#DAE5F1" BorderBrush="Gray" BorderThickness="1,1,1,1" Width="133" >
- <TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" IsEnabled="False" Margin="2" Width="100"/>
- </Border>
- <TextBlock Text="/" Margin="10 10 10 0"></TextBlock>
- <Border Background="#DAE5F1" BorderBrush="Gray" BorderThickness="1,1,1,1" >
- <TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" Margin="2" IsEnabled="False" Width="100"/>
- </Border>
- </StackPanel>
- <StackPanel Grid.Row="4" Orientation="Horizontal" HorizontalAlignment="Center">
- <Border Background="#DAE5F1" BorderBrush="Gray" BorderThickness="1,1,0,1" >
- <TextBlock IsEnabled="False" Width="83"/>
- </Border>
- <Border Background="#DAE5F1" BorderBrush="Gray" BorderThickness="1,1,0,1" >
- <TextBlock IsEnabled="False" Width="50" Margin="4 0 4 0"/>
- </Border>
- <Border Background="#DAE5F1" BorderBrush="Gray" BorderThickness="1,1,0,1" >
- <TextBlock IsEnabled="False" Width="50" Margin="4 0 4 0"/>
- </Border>
- <Border Background="#DAE5F1" BorderBrush="Gray" BorderThickness="1,1,1,1" >
- <TextBlock IsEnabled="False" Width="61"/>
- </Border>
- </StackPanel>
- </Grid>
- <Grid Grid.Row="4" >
- <Grid.RowDefinitions>
- <RowDefinition/>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <TextBlock Style="{StaticResource TextBlock_Grid}" Text="TransferRoom N2Tota(L)"/>
- <StackPanel Grid.Row="1" Orientation="Horizontal" HorizontalAlignment="Center" Width="265">
- <Border Background="#DAE5F1" BorderBrush="Gray" BorderThickness="1,1,1,1" >
- <TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" IsEnabled="False" Width="127"/>
- </Border>
- <TextBlock Text="/" Margin="10 10 10 0"></TextBlock>
- <Border Background="#DAE5F1" BorderBrush="Gray" BorderThickness="1,1,1,1" >
- <TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" IsEnabled="False" Width="109"/>
- </Border>
- </StackPanel>
- </Grid>
- </Grid>
- </Canvas>
- </ContentControl>
- <i:Interaction.Triggers>
- <i:EventTrigger EventName="Click">
- <cal:ActionMessage MethodName="SwitchPage">
- <cal:Parameter Value="N2Purge"/>
- </cal:ActionMessage>
- </i:EventTrigger>
- </i:Interaction.Triggers>
- </Button>
- </Grid>
- </Grid>
- </UserControl>
|