StatusView.xaml 202 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902
  1. <UserControl x:Class="FurnaceUI.Views.Operations.StatusView"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity"
  7. xmlns:cal="http://www.caliburn.org"
  8. xmlns:system="clr-namespace:System;assembly=mscorlib"
  9. xmlns:system1="http://schemas.microsoft.com/netfx/2009/xaml/presentation"
  10. xmlns:parts="clr-namespace:FurnaceUI.Controls.Parts" xmlns:deviceControl="clr-namespace:Aitex.Core.UI.DeviceControl;assembly=MECF.Framework.UI.Core"
  11. mc:Ignorable="d"
  12. d:DesignHeight="760" d:DesignWidth="1280" FontFamily="Segoe" Margin="0,-8,0,4">
  13. <UserControl.Resources>
  14. <system:Double x:Key="cassetteWidth">40</system:Double>
  15. <system1:Thickness x:Key="thickness">0,2,2,0</system1:Thickness>
  16. </UserControl.Resources>
  17. <Grid Margin="0,5,0,0" Background="White">
  18. <Grid.RowDefinitions>
  19. <RowDefinition Height="0.4*"/>
  20. <RowDefinition Height="0.6*"/>
  21. </Grid.RowDefinitions>
  22. <Grid.ColumnDefinitions>
  23. <ColumnDefinition Width="0.5*"/>
  24. <ColumnDefinition Width="0.4*"/>
  25. </Grid.ColumnDefinitions>
  26. <Grid Grid.Row="0" Grid.Column="0">
  27. <Grid.ColumnDefinitions>
  28. <ColumnDefinition Width="0.4*"></ColumnDefinition>
  29. <ColumnDefinition Width="0.5*"></ColumnDefinition>
  30. </Grid.ColumnDefinitions>
  31. <Grid Grid.Column="0">
  32. <Button Grid.Row="0" Grid.Column="0" Margin="0,5,5,0" Padding="0" Style="{StaticResource MainArea_Button}" VerticalContentAlignment="Stretch" HorizontalContentAlignment="Stretch" >
  33. <ContentControl>
  34. <Canvas>
  35. <TextBlock Text="CJob " Canvas.Left="200" HorizontalAlignment="Center" Style="{StaticResource TextBlock_Title}" VerticalAlignment="Top" FontSize="16"/>
  36. <TextBlock Text="Job " Canvas.Left="60" HorizontalAlignment="Center" Style="{StaticResource TextBlock_Title}" VerticalAlignment="Top" FontSize="16"/>
  37. <Image Source="/FurnaceUI;component/Resources/images/icons/Elevator.png" Width="40" Canvas.Left="0" Canvas.Top="2"/>
  38. <Border Canvas.Left="90" Canvas.Top="25" Background="#DAE5F1" BorderBrush="Gray" BorderThickness="1,1,1,1" Margin="0" Width="177" Height="35">
  39. <TextBlock Text="{Binding ControlJobStatus, Mode=OneWay}" HorizontalAlignment="Center" VerticalAlignment="Center" IsEnabled="False"/>
  40. </Border>
  41. <Border BorderBrush="Gainsboro" BorderThickness="0,0,1,1" Canvas.Top="65" Canvas.Left="6">
  42. <Border BorderBrush="Gray" BorderThickness="1,1,1,1">
  43. <DockPanel Margin="1,1,0,0" Height="120" Width="265">
  44. <Grid>
  45. <Grid.RowDefinitions>
  46. <RowDefinition/>
  47. <RowDefinition/>
  48. <RowDefinition/>
  49. </Grid.RowDefinitions>
  50. <Grid.ColumnDefinitions>
  51. <ColumnDefinition Width="0.2*"/>
  52. <ColumnDefinition Width="0.1*"/>
  53. <ColumnDefinition Width="0.7*"/>
  54. </Grid.ColumnDefinitions>
  55. <Border BorderBrush="Gray" BorderThickness="1" Grid.Row="0" Grid.Column="0" >
  56. <TextBlock Style="{StaticResource TextBlock_Grid}" Text="1" FontSize="20" HorizontalAlignment="Center" VerticalAlignment="Center" />
  57. </Border>
  58. <TextBlock Style="{StaticResource TextBlock_Grid_RightAlignment}" Grid.Row="0" Grid.Column="1" Text="ID"/>
  59. <TextBlock Style="{StaticResource TextBlock_Grid_RightAlignment}" Grid.Row="1" Grid.ColumnSpan="2" Text="Schedule End Time"/>
  60. <Border Grid.Row="0" Grid.Column="2" Background="#DAE5F1" BorderBrush="Gray" BorderThickness="1,1,1,1" Margin="4">
  61. <TextBlock Text="{Binding ProcessJob1ID, Mode=OneWay}" HorizontalAlignment="Center" VerticalAlignment="Center" IsEnabled="False" />
  62. </Border>
  63. <Border Grid.Row="1" Grid.Column="2" Background="#DAE5F1" BorderBrush="Gray" BorderThickness="1,1,1,1" Margin="4">
  64. <TextBlock Text="{Binding TotolProcessJob1EndTime, Mode=OneWay}" HorizontalAlignment="Center" VerticalAlignment="Center" IsEnabled="False" />
  65. </Border>
  66. <Border Grid.Row="2" Grid.ColumnSpan="3" Background="#DAE5F1" BorderBrush="Gray" BorderThickness="1,1,1,1" Margin="4">
  67. <TextBlock Text="{Binding ProcessJob1Status, Mode=OneWay}" HorizontalAlignment="Center" VerticalAlignment="Center" IsEnabled="False" />
  68. </Border>
  69. </Grid>
  70. </DockPanel>
  71. </Border>
  72. </Border>
  73. <Border BorderBrush="Gainsboro" BorderThickness="0,0,1,1" Canvas.Top="190" Canvas.Left="6">
  74. <Border BorderBrush="Gray" BorderThickness="1,1,1,1">
  75. <DockPanel Margin="1,1,0,0" Height="120" Width="265">
  76. <Grid>
  77. <Grid.RowDefinitions>
  78. <RowDefinition/>
  79. <RowDefinition/>
  80. <RowDefinition/>
  81. </Grid.RowDefinitions>
  82. <Grid.ColumnDefinitions>
  83. <ColumnDefinition Width="0.2*"/>
  84. <ColumnDefinition Width="0.1*"/>
  85. <ColumnDefinition Width="0.7*"/>
  86. </Grid.ColumnDefinitions>
  87. <Border BorderBrush="Gray" BorderThickness="1" Grid.Row="0" Grid.Column="0">
  88. <TextBlock Style="{StaticResource TextBlock_Grid}" Text="2" FontSize="20" HorizontalAlignment="Center" VerticalAlignment="Center"/>
  89. </Border>
  90. <TextBlock Style="{StaticResource TextBlock_Grid_RightAlignment}" Grid.Row="0" Grid.Column="1" Text="ID"/>
  91. <TextBlock Style="{StaticResource TextBlock_Grid_RightAlignment}" Grid.Row="1" Grid.ColumnSpan="2" Text="Schedule End Time"/>
  92. <Border Grid.Row="0" Grid.Column="2" Background="#DAE5F1" BorderBrush="Gray" BorderThickness="1,1,1,1" Margin="4">
  93. <TextBlock Text="{Binding ProcessJob2ID, Mode=OneWay}" HorizontalAlignment="Center" VerticalAlignment="Center" IsEnabled="False" />
  94. </Border>
  95. <Border Grid.Row="1" Grid.Column="2" Background="#DAE5F1" BorderBrush="Gray" BorderThickness="1,1,1,1" Margin="4">
  96. <TextBlock Text="{Binding TotolProcessJob2EndTime, Mode=OneWay}" HorizontalAlignment="Center" VerticalAlignment="Center" IsEnabled="False" />
  97. </Border>
  98. <Border Grid.Row="2" Grid.ColumnSpan="3" Background="#DAE5F1" BorderBrush="Gray" BorderThickness="1,1,1,1" Margin="4">
  99. <TextBlock Text="{Binding ProcessJob2Status, Mode=OneWay}" HorizontalAlignment="Center" VerticalAlignment="Center" IsEnabled="False" />
  100. </Border>
  101. </Grid>
  102. </DockPanel>
  103. </Border>
  104. </Border>
  105. </Canvas>
  106. </ContentControl>
  107. <i:Interaction.Triggers>
  108. <i:EventTrigger EventName="Click">
  109. <cal:ActionMessage MethodName="SwitchPage">
  110. <cal:Parameter Value="CJStatus"/>
  111. </cal:ActionMessage>
  112. </i:EventTrigger>
  113. </i:Interaction.Triggers>
  114. </Button>
  115. </Grid>
  116. <Grid Grid.Column="1">
  117. <Button Grid.Row="0" Grid.Column="0" Margin="0,5,5,0" Padding="0" Style="{StaticResource MainArea_Button}" VerticalContentAlignment="Stretch" HorizontalContentAlignment="Stretch" >
  118. <ContentControl>
  119. <Grid>
  120. <Grid.RowDefinitions>
  121. <RowDefinition/>
  122. <RowDefinition Height="45"/>
  123. </Grid.RowDefinitions>
  124. <Button Style="{StaticResource Transparent_Button}" VerticalContentAlignment="Stretch" HorizontalContentAlignment="Stretch" >
  125. <Canvas>
  126. <TextBlock Text="Recipe" Canvas.Left="50" HorizontalAlignment="Center" Style="{StaticResource TextBlock_Title}" VerticalAlignment="Top" FontSize="16"/>
  127. <TextBlock Text="{Binding HoldWaitDisplay}" Canvas.Left="280" HorizontalAlignment="Center" Style="{StaticResource TextBlock_Title}" VerticalAlignment="Top" FontSize="25"/>
  128. <Image Source="/FurnaceUI;component/Resources/images/icons/RecipeDetail44.png" Width="40" Canvas.Left="-5" Canvas.Top="2"/>
  129. <Grid Canvas.Top="40" Canvas.Left="0" Width="355">
  130. <Grid.RowDefinitions>
  131. <RowDefinition Height="65"/>
  132. <RowDefinition Height="65"/>
  133. <RowDefinition Height="65"/>
  134. <RowDefinition Height="38"/>
  135. </Grid.RowDefinitions>
  136. <Grid>
  137. <Grid.RowDefinitions>
  138. <RowDefinition/>
  139. <RowDefinition/>
  140. </Grid.RowDefinitions>
  141. <Grid.ColumnDefinitions>
  142. <ColumnDefinition Width="0.4*"/>
  143. <ColumnDefinition Width="0.3*"/>
  144. <ColumnDefinition Width="0.3*"/>
  145. </Grid.ColumnDefinitions>
  146. <TextBlock Style="{StaticResource TextBlock_Grid}" Text="Process Recipe"/>
  147. <TextBlock Grid.Column="1" Style="{StaticResource TextBlock_Grid}" Text="Remain Time"/>
  148. <TextBlock Grid.Column="2" Style="{StaticResource TextBlock_Grid}" Text="{Binding PM1HoldName, Mode=OneWay}"/>
  149. <Border Grid.Row="1" Background="#DAE5F1" BorderBrush="Gray" BorderThickness="1,1,1,1" >
  150. <TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" Grid.Row="1" Text="{Binding PM1SelectedRecipeNameDisplay, Mode=OneWay}" ToolTip="{Binding PM1SelectedRecipeNameDisplay, Mode=OneWay}" ></TextBlock>
  151. </Border>
  152. <Border Grid.Row="1" Grid.Column="1" Background="#DAE5F1" BorderBrush="Gray" BorderThickness="0,1,1,1" >
  153. <TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" IsEnabled="False" Text="{Binding PM1RecipeTime, Mode=OneWay}" ></TextBlock>
  154. </Border>
  155. <Border Grid.Row="1" Grid.Column="2" Background="#DAE5F1" BorderBrush="Gray" BorderThickness="0,1,1,1" >
  156. <TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" IsEnabled="False" Text="{Binding PM1HoldTime, Mode=OneWay}" ></TextBlock>
  157. </Border>
  158. </Grid>
  159. <Grid Grid.Row="1">
  160. <Grid.RowDefinitions>
  161. <RowDefinition/>
  162. <RowDefinition/>
  163. </Grid.RowDefinitions>
  164. <Grid.ColumnDefinitions>
  165. <ColumnDefinition Width="0.4*"/>
  166. <ColumnDefinition Width="0.3*"/>
  167. <ColumnDefinition Width="0.3*"/>
  168. </Grid.ColumnDefinitions>
  169. <TextBlock Style="{StaticResource TextBlock_Grid}" Text="Step Name"/>
  170. <TextBlock Grid.Column="1" Style="{StaticResource TextBlock_Grid}" Text="Remain Time"/>
  171. <TextBlock Grid.Column="2" Style="{StaticResource TextBlock_Grid}" Text="Next Step"/>
  172. <Border Grid.Row="1" Background="#DAE5F1" BorderBrush="Gray" BorderThickness="1,1,1,1" >
  173. <TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" IsEnabled="False" Text="{Binding PM1StepName, Mode=OneWay}" ></TextBlock>
  174. </Border>
  175. <Border Grid.Row="1" Grid.Column="1" Background="#DAE5F1" BorderBrush="Gray" BorderThickness="0,1,1,1" >
  176. <TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" IsEnabled="False" Text="{Binding PM1StepTime, Mode=OneWay}" ></TextBlock>
  177. </Border>
  178. <Border Grid.Row="1" Grid.Column="2" Background="#DAE5F1" BorderBrush="Gray" BorderThickness="0,1,1,1" >
  179. <TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" IsEnabled="False" Text="{Binding PM1NextStepName, Mode=OneWay}" ></TextBlock>
  180. </Border>
  181. </Grid>
  182. <Grid Grid.Row="2">
  183. <Grid.RowDefinitions>
  184. <RowDefinition/>
  185. <RowDefinition/>
  186. </Grid.RowDefinitions>
  187. <Grid.ColumnDefinitions>
  188. <ColumnDefinition/>
  189. <ColumnDefinition/>
  190. </Grid.ColumnDefinitions>
  191. <TextBlock Style="{StaticResource TextBlock_Grid}" Text="Start Time"/>
  192. <TextBlock Grid.Column="1" Style="{StaticResource TextBlock_Grid}" Text="End Time"/>
  193. <Border Grid.Row="1" Background="#DAE5F1" BorderBrush="Gray" BorderThickness="1,1,1,1" >
  194. <TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" IsEnabled="False" Text="{Binding PM1BeginTime, Mode=OneWay}" ></TextBlock>
  195. </Border>
  196. <Border Grid.Row="1" Grid.Column="1" Background="#DAE5F1" BorderBrush="Gray" BorderThickness="0,1,1,1" >
  197. <TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" IsEnabled="False" Text="{Binding PM1EndTime, Mode=OneWay}" ></TextBlock>
  198. </Border>
  199. </Grid>
  200. <Grid Grid.Row="3" Margin="0,6,0,0" >
  201. <Grid.ColumnDefinitions>
  202. <ColumnDefinition Width="50"/>
  203. <ColumnDefinition/>
  204. <ColumnDefinition Width="50"/>
  205. <ColumnDefinition/>
  206. </Grid.ColumnDefinitions>
  207. <TextBlock Margin="5,5,0,0" Grid.Column="0" Text="Loop" Style="{StaticResource TextBlock_Grid}"/>
  208. <Border Grid.Column="1" Background="#DAE5F1" BorderBrush="Gray" BorderThickness="1,1,1,1" >
  209. <TextBlock x:Name="Loop" HorizontalAlignment="Center" VerticalAlignment="Center" IsEnabled="False" Text="{Binding LoopInfo, Mode=OneWay}" ></TextBlock>
  210. </Border>
  211. <TextBlock Margin="10,5,0,0" Grid.Column="2" Text="Sub" Style="{StaticResource TextBlock_Grid}"/>
  212. <Border Grid.Column="3" Background="#DAE5F1" BorderBrush="Gray" BorderThickness="1,1,1,1" >
  213. <TextBlock x:Name="Sub" HorizontalAlignment="Center" VerticalAlignment="Center" IsEnabled="False" Text="{Binding SubInfo, Mode=OneWay}" ></TextBlock>
  214. </Border>
  215. </Grid>
  216. </Grid>
  217. </Canvas>
  218. <i:Interaction.Triggers>
  219. <i:EventTrigger EventName="Click">
  220. <cal:ActionMessage MethodName="SwitchPage">
  221. <cal:Parameter Value="MainRecipe"/>
  222. </cal:ActionMessage>
  223. </i:EventTrigger>
  224. </i:Interaction.Triggers>
  225. </Button>
  226. <Button Grid.Row="1" Style="{StaticResource Transparent_Button}" VerticalContentAlignment="Stretch" HorizontalContentAlignment="Stretch">
  227. <StackPanel Orientation="Horizontal" Grid.Row="3" Height="33" Margin="0,0,0,0">
  228. <Border Margin="1,0,0,0" Background="#DAE5F1" BorderBrush="Gray" BorderThickness="1,1,0,1" >
  229. <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"/>
  230. </Border>
  231. <system1:ProgressBar Value="{Binding RecipeProgressValue}" BorderBrush="Gray" BorderThickness="1,1,1,1" Background="#DAE5F1" Width="290" Margin="0,0,-7,0"/>
  232. </StackPanel>
  233. <i:Interaction.Triggers>
  234. <i:EventTrigger EventName="Click">
  235. <cal:ActionMessage MethodName="SwitchPage">
  236. <cal:Parameter Value="PMCommand"/>
  237. </cal:ActionMessage>
  238. </i:EventTrigger>
  239. </i:Interaction.Triggers>
  240. </Button>
  241. </Grid>
  242. </ContentControl>
  243. </Button>
  244. </Grid>
  245. </Grid>
  246. <Grid Grid.Row="0" Grid.Column="1" Margin="0,0,0,0">
  247. <Grid.ColumnDefinitions>
  248. <ColumnDefinition/>
  249. <ColumnDefinition/>
  250. </Grid.ColumnDefinitions>
  251. <Button Grid.Row="0" Grid.Column="0" Margin="0,5,5,0" Style="{StaticResource MainArea_Button}" VerticalContentAlignment="Stretch" HorizontalContentAlignment="Stretch" >
  252. <ContentControl>
  253. <Canvas>
  254. <TextBlock Text="Temperature(℃)" Canvas.Left="60" HorizontalAlignment="Center" Style="{StaticResource TextBlock_Title}" VerticalAlignment="Bottom" FontSize="16" />
  255. <Image Source="/FurnaceUI;component/Resources/images/icons/Temperature44.png" Width="40" Canvas.Left="0"/>
  256. <Canvas>
  257. <Grid Width="180" VerticalAlignment="Bottom" Canvas.Left="26" Canvas.Top="70">
  258. <Grid.RowDefinitions>
  259. <RowDefinition Height="30"/>
  260. <RowDefinition Height="30"/>
  261. <RowDefinition Height="30"/>
  262. <RowDefinition Height="30"/>
  263. <RowDefinition Height="30"/>
  264. <RowDefinition Height="30"/>
  265. </Grid.RowDefinitions>
  266. <Grid.ColumnDefinitions>
  267. <ColumnDefinition Width="90"/>
  268. <ColumnDefinition Width="90"/>
  269. </Grid.ColumnDefinitions>
  270. <Border Grid.Row="0" Grid.Column="0" BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,0,1" Background="{DynamicResource Table_BG_Title}" Padding="1">
  271. <TextBlock Text="" TextWrapping="Wrap" Foreground="Black" FontSize="16" FontFamily="Segoe" HorizontalAlignment="Center" VerticalAlignment="Center"/>
  272. </Border>
  273. <Border Grid.Row="1" Grid.Column="0" BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Content}" Padding="1">
  274. <TextBlock Style="{StaticResource TextBlock_Grid}" Text="U" TextWrapping="Wrap" Foreground="Black" FontSize="14" FontFamily="Segoe" HorizontalAlignment="Center" VerticalAlignment="Center"/>
  275. </Border>
  276. <Border Grid.Row="2" Grid.Column="0" BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Content}" Padding="1">
  277. <TextBlock Style="{StaticResource TextBlock_Grid}" Text="CU" TextWrapping="Wrap" Foreground="Black" FontSize="14" FontFamily="Segoe" HorizontalAlignment="Center" VerticalAlignment="Center"/>
  278. </Border>
  279. <Border Grid.Row="3" Grid.Column="0" BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Content}" Padding="1">
  280. <TextBlock Style="{StaticResource TextBlock_Grid}" Text="C" TextWrapping="Wrap" Foreground="Black" FontSize="14" FontFamily="Segoe" HorizontalAlignment="Center" VerticalAlignment="Center"/>
  281. </Border>
  282. <Border Grid.Row="4" Grid.Column="0" BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Content}" Padding="1">
  283. <TextBlock Style="{StaticResource TextBlock_Grid}" Text="CL" TextWrapping="Wrap" Foreground="Black" FontSize="14" FontFamily="Segoe" HorizontalAlignment="Center" VerticalAlignment="Center"/>
  284. </Border>
  285. <Border Grid.Row="5" Grid.Column="0" BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Content}" Padding="1">
  286. <TextBlock Style="{StaticResource TextBlock_Grid}" Text="L" TextWrapping="Wrap" Foreground="Black" FontSize="14" FontFamily="Segoe" HorizontalAlignment="Center" VerticalAlignment="Center"/>
  287. </Border>
  288. <Border Grid.Row="0" Grid.Column="1" BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,0,1" Background="{DynamicResource Table_BG_Title}" Padding="1" >
  289. <TextBlock Text="Actual(℃)" TextWrapping="Wrap" Foreground="Black" FontSize="16" FontFamily="Segoe" HorizontalAlignment="Center" VerticalAlignment="Center"/>
  290. </Border>
  291. <Border Grid.Row="1" Grid.Column="1" BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Padding="1" >
  292. <TextBlock Style="{StaticResource TextBlock_Grid}" Text="{Binding TopHeaterData.FeedBack, StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="Black" FontSize="14" FontFamily="Segoe" HorizontalAlignment="Center" VerticalAlignment="Bottom" />
  293. </Border>
  294. <Border Grid.Row="2" Grid.Column="1" BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Padding="1" >
  295. <TextBlock Style="{StaticResource TextBlock_Grid}" Text="{Binding TopCenterHeaterData.FeedBack, StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="Black" FontSize="14" FontFamily="Segoe" HorizontalAlignment="Center" VerticalAlignment="Center"/>
  296. </Border>
  297. <Border Grid.Row="3" Grid.Column="1" BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Padding="1" >
  298. <TextBlock Style="{StaticResource TextBlock_Grid}" Text="{Binding CenterHeaterData.FeedBack, StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="Black" FontSize="14" FontFamily="Segoe" HorizontalAlignment="Center" VerticalAlignment="Center"/>
  299. </Border>
  300. <Border Grid.Row="4" Grid.Column="1" BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Padding="1" >
  301. <TextBlock Style="{StaticResource TextBlock_Grid}" Text="{Binding CenterBottomHeaterData.FeedBack, StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="Black" FontSize="14" FontFamily="Segoe" HorizontalAlignment="Center" VerticalAlignment="Center"/>
  302. </Border>
  303. <Border Grid.Row="5" Grid.Column="1" BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Padding="1" >
  304. <TextBlock Style="{StaticResource TextBlock_Grid}" Text="{Binding BottomHeaterData.FeedBack, StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="Black" FontSize="14" FontFamily="Segoe" HorizontalAlignment="Center" VerticalAlignment="Center"/>
  305. </Border>
  306. </Grid>
  307. </Canvas>
  308. </Canvas>
  309. </ContentControl>
  310. <i:Interaction.Triggers>
  311. <i:EventTrigger EventName="Click">
  312. <cal:ActionMessage MethodName="SwitchPage">
  313. <cal:Parameter Value="Temp"/>
  314. </cal:ActionMessage>
  315. </i:EventTrigger>
  316. </i:Interaction.Triggers>
  317. </Button>
  318. <Button Grid.Row="0" Grid.Column="1" Margin="0,5,0,0" Style="{StaticResource MainArea_Button}" VerticalContentAlignment="Stretch" HorizontalContentAlignment="Stretch" >
  319. <ContentControl>
  320. <Canvas>
  321. <TextBlock Text="Pressure" Canvas.Left="60" HorizontalAlignment="Center" Style="{StaticResource TextBlock_Title}" VerticalAlignment="Bottom" FontSize="16"/>
  322. <Image Source="/FurnaceUI;component/Resources/images/icons/APC44.png" Width="40" Canvas.Left="0"/>
  323. <Grid Canvas.Top="30" Height="280">
  324. <Grid.RowDefinitions>
  325. <RowDefinition/>
  326. <RowDefinition/>
  327. <RowDefinition/>
  328. <RowDefinition/>
  329. </Grid.RowDefinitions>
  330. <Grid Grid.Row="0" Width="230">
  331. <Grid.RowDefinitions>
  332. <RowDefinition/>
  333. <RowDefinition/>
  334. </Grid.RowDefinitions>
  335. <Grid.ColumnDefinitions>
  336. <ColumnDefinition Width="0.7*"/>
  337. <ColumnDefinition Width="0.3*"/>
  338. </Grid.ColumnDefinitions>
  339. <TextBlock Style="{StaticResource TextBlock_Grid}" Grid.ColumnSpan="2" Text="Actual"/>
  340. <Border Grid.Row="1" Background="#DAE5F1" BorderBrush="Gray" BorderThickness="1,1,1,1" >
  341. <TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" IsEnabled="False" Text="{Binding APCFeedbackView, Mode=OneWay}" Margin="4" ></TextBlock>
  342. </Border>
  343. <!--<TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" Background="#DAE5F1" IsEnabled="False" Text="{Binding APCFeedbackView, StringFormat={}{0:f3}, Mode=OneWay}" Margin="4" Visibility="{Binding APCPressureView}"></TextBlock>-->
  344. <Border Grid.Row="1" Grid.Column="1" Background="#DAE5F1" BorderBrush="Gray" BorderThickness="0,1,1,1" >
  345. <TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" IsEnabled="False" Text="{Binding DefaultUnit}" Margin="4"/>
  346. </Border>
  347. </Grid>
  348. <Grid Grid.Row="1">
  349. <Grid.RowDefinitions>
  350. <RowDefinition/>
  351. <RowDefinition/>
  352. </Grid.RowDefinitions>
  353. <TextBlock Style="{StaticResource TextBlock_Grid}" Text="Mode"/>
  354. <Border Grid.Row="1" Background="#DAE5F1" BorderBrush="Gray" BorderThickness="1,1,1,1" >
  355. <TextBlock Background="#DAE5F1" IsEnabled="False" HorizontalAlignment="Center" VerticalAlignment="Center" Margin="4" Text="APC Control" Grid.Row="1"/>
  356. </Border>
  357. </Grid>
  358. <Grid Grid.Row="2">
  359. <Grid.RowDefinitions>
  360. <RowDefinition/>
  361. <RowDefinition/>
  362. </Grid.RowDefinitions>
  363. <TextBlock Style="{StaticResource TextBlock_Grid}" Text="Command"/>
  364. <Border Grid.Row="1" Background="#DAE5F1" BorderBrush="Gray" BorderThickness="1,1,1,1" >
  365. <TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" IsEnabled="False" Margin="4" Text="{Binding APCData.TextModeFeedback, Mode=OneWay}" />
  366. </Border>
  367. </Grid>
  368. <Grid Grid.Row="3" Width="230">
  369. <Grid.RowDefinitions>
  370. <RowDefinition/>
  371. <RowDefinition/>
  372. </Grid.RowDefinitions>
  373. <Grid.ColumnDefinitions>
  374. <ColumnDefinition Width="0.7*"/>
  375. <ColumnDefinition Width="0.3*"/>
  376. </Grid.ColumnDefinitions>
  377. <TextBlock Style="{StaticResource TextBlock_Grid}" Grid.ColumnSpan="2" Text="APC"/>
  378. <Border Grid.Row="1" Background="#DAE5F1" BorderBrush="Gray" BorderThickness="1,1,1,1" >
  379. <TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" IsEnabled="False" Text="{Binding APCData.PositionFeedback, StringFormat={}{0:f1}, Mode=OneWay}" Margin="4" ></TextBlock>
  380. </Border>
  381. <!--<TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" Background="#DAE5F1" IsEnabled="False" Text="{Binding APCFeedbackView, StringFormat={}{0:f3}, Mode=OneWay}" Margin="4" Visibility="{Binding APCPressureView}"></TextBlock>-->
  382. <Border Grid.Row="1" Grid.Column="1" Background="#DAE5F1" BorderBrush="Gray" BorderThickness="0,1,1,1" >
  383. <TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" Background="#DAE5F1" Text="%" Margin="4"/>
  384. </Border>
  385. </Grid>
  386. </Grid>
  387. </Canvas>
  388. </ContentControl>
  389. <i:Interaction.Triggers>
  390. <i:EventTrigger EventName="Click">
  391. <cal:ActionMessage MethodName="SwitchPage">
  392. <cal:Parameter Value="Pressure"/>
  393. </cal:ActionMessage>
  394. </i:EventTrigger>
  395. </i:Interaction.Triggers>
  396. </Button>
  397. </Grid>
  398. <Button Grid.Row="1" Grid.Column="0" Margin="0,5,5,-11" Padding="0" Style="{StaticResource MainArea_Button}" VerticalContentAlignment="Stretch" HorizontalContentAlignment="Stretch" >
  399. <ContentControl>
  400. <Canvas Margin="-10,20,10,0">
  401. <TextBlock Canvas.Left="60" Canvas.Top="-15" Text="Transfer" HorizontalAlignment="Center" Style="{StaticResource TextBlock_Title}" VerticalAlignment="Top" FontSize="16"/>
  402. <Image Source="/FurnaceUI;component/Resources/images/icons/Stocker44.png" Width="40" Canvas.Left="8" Canvas.Top="-20"/>
  403. <Canvas Canvas.Top="20" Canvas.Left="30">
  404. <Canvas.RenderTransform>
  405. <TransformGroup>
  406. <ScaleTransform ScaleX="0.55" ScaleY="0.55"/>
  407. <ScaleTransform />
  408. <SkewTransform/>
  409. <RotateTransform/>
  410. <TranslateTransform/>
  411. </TransformGroup>
  412. </Canvas.RenderTransform>
  413. <i:Interaction.Triggers>
  414. <i:EventTrigger EventName="MouseLeftButtonDown">
  415. <cal:ActionMessage MethodName="CanvasMouseLeftButtonDown">
  416. <cal:Parameter Value="$Source"/>
  417. </cal:ActionMessage>
  418. </i:EventTrigger>
  419. </i:Interaction.Triggers>
  420. <Image Source="/FurnaceUI;component/Resources/Images/Controls3/bt1.png" Canvas.Left="19" Canvas.Top="115" Width="81" />
  421. <Image Source="/FurnaceUI;component/Resources/Images/Controls3/bt1.png" Canvas.Left="139" Canvas.Top="115" Width="81"/>
  422. <Image Source="/FurnaceUI;component/Resources/Images/Controls3/bt1.png" Canvas.Left="19" Canvas.Top="395" Width="81" />
  423. <Image Source="/FurnaceUI;component/Resources/Images/Controls3/bt1.png" Canvas.Left="139" Canvas.Top="395" Width="81"/>
  424. <!--<Image Source="/FurnaceUI;component/Resources/Images/Controls3/hg1.png" Canvas.Left="295" Canvas.Top="95"/>-->
  425. <Image Source="{Binding CassetteRobotAxleStatusPath}" Canvas.Left="295" Canvas.Top="-40" Height="770">
  426. <i:Interaction.Triggers>
  427. <i:EventTrigger EventName="MouseDown">
  428. <cal:ActionMessage MethodName="PopupPage">
  429. <cal:Parameter Value="WaferRobot"/>
  430. </cal:ActionMessage>
  431. </i:EventTrigger>
  432. </i:Interaction.Triggers>
  433. </Image>
  434. <!--<Image Source="/FurnaceUI;component/Resources/Images/Controls3/hg2.png" Canvas.Left="776" Canvas.Top="296"/>-->
  435. <Image Source="{Binding WaferRobotAxleStatusPath}" Canvas.Left="776" Canvas.Top="360" Height="352">
  436. <i:Interaction.Triggers>
  437. <i:EventTrigger EventName="MouseLeftButtonDown">
  438. <cal:ActionMessage MethodName="PopupPage">
  439. <cal:Parameter Value="CassetteRobot"/>
  440. </cal:ActionMessage>
  441. </i:EventTrigger>
  442. </i:Interaction.Triggers>
  443. </Image>
  444. <!--<Image Source="/FurnaceUI;component/Resources/Images/Controls3/qt3.png" Canvas.Left="32" Canvas.Top="50" />-->
  445. <Image Source="/FurnaceUI;component/Resources/Images/Controls3/bt1.png" Canvas.Left="609" Canvas.Top="450" Width="81"/>
  446. <Image Source="/FurnaceUI;component/Resources/Images/Controls3/bt1.png" Canvas.Left="609" Canvas.Top="600" Width="81"/>
  447. <!--<Image Source="/FurnaceUI;component/Resources/Images/Controls3/listbg.png" Canvas.Left="33" Canvas.Top="352"/>
  448. <Image Source="/FurnaceUI;component/Resources/Images/Controls3/bt2.png" Canvas.Left="33" Canvas.Top="428"/>
  449. <Image Source="/FurnaceUI;component/Resources/Images/Controls3/bt2.png" Canvas.Left="33" Canvas.Top="506"/>
  450. <Image Source="/FurnaceUI;component/Resources/Images/Controls3/bt2.png" Canvas.Left="33" Canvas.Top="585"/>
  451. <Image Source="/FurnaceUI;component/Resources/Images/Controls3/bt2.png" Canvas.Left="33" Canvas.Top="672"/>-->
  452. <TextBlock Text="LP 3" FontSize="13" FontFamily="Arial" Canvas.Left="45" Canvas.Top="135" Foreground="Black"/>
  453. <TextBlock Text="LP 4" FontSize="13" FontFamily="Arial" Canvas.Left="166" Canvas.Top="135" Foreground="Black"/>
  454. <TextBlock Text="LP 1" FontSize="13" FontFamily="Arial" Canvas.Left="45" Canvas.Top="415" Foreground="Black"/>
  455. <TextBlock Text="LP 2" FontSize="13" FontFamily="Arial" Canvas.Left="166" Canvas.Top="415" Foreground="Black"/>
  456. <TextBlock Text="FIMS 2" FontSize="13" FontFamily="Arial" Canvas.Left="629" Canvas.Top="470" Foreground="Black"/>
  457. <TextBlock Text="FIMS 1" FontSize="13" FontFamily="Arial" Canvas.Left="629" Canvas.Top="620" Foreground="Black"/>
  458. <TextBlock Visibility="{Binding IsStocker1Visibility}" Text="1" FontSize="13" FontFamily="Arial" Canvas.Left="475" Canvas.Top="304" Foreground="Black"/>
  459. <Image Visibility="{Binding IsStocker1Visibility}" Source="/FurnaceUI;component/Resources/Images/Controls3/bg1.png" Canvas.Left="491" Canvas.Top="265" />
  460. <Image Width="80" Panel.ZIndex="-1" Source="/FurnaceUI;component/Resources/Images/Controls3/StockerHidden.png" Canvas.Left="491" Canvas.Top="265" />
  461. <deviceControl:AITSensor GreenColor="True" Visibility="{Binding IsStocker1Visibility}" LightOnValue="{Binding SensorStation1Presence}" Canvas.Left="471" Canvas.Top="320"/>
  462. <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"/>
  463. <TextBlock Visibility="{Binding IsStocker2Visibility}" Text="2" FontSize="13" FontFamily="Arial" Canvas.Left="595" Canvas.Top="304" Foreground="Black"/>
  464. <Image Visibility="{Binding IsStocker2Visibility}" Source="/FurnaceUI;component/Resources/Images/Controls3/bg1.png" Canvas.Left="609" Canvas.Top="265" />
  465. <Image Width="80" Panel.ZIndex="-1" Source="/FurnaceUI;component/Resources/Images/Controls3/StockerHidden.png" Canvas.Left="609" Canvas.Top="265" />
  466. <deviceControl:AITSensor Visibility="{Binding IsStocker2Visibility}" GreenColor="True" LightOnValue="{Binding SensorStation2Presence}" Canvas.Left="591" Canvas.Top="320"/>
  467. <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"/>
  468. <TextBlock Text="3" Visibility="{Binding IsStocker3Visibility}" FontSize="13" FontFamily="Arial" Canvas.Left="713" Canvas.Top="304" Foreground="Black"/>
  469. <Image Visibility="{Binding IsStocker3Visibility}" Source="/FurnaceUI;component/Resources/Images/Controls3/bg1.png" Canvas.Left="727" Canvas.Top="265" />
  470. <Image Width="80" Panel.ZIndex="-1" Source="/FurnaceUI;component/Resources/Images/Controls3/StockerHidden.png" Canvas.Left="727" Canvas.Top="265" />
  471. <deviceControl:AITSensor Visibility="{Binding IsStocker3Visibility}" GreenColor="True" LightOnValue="{Binding SensorStation3Presence}" Canvas.Left="708" Canvas.Top="320"/>
  472. <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"/>
  473. <TextBlock Visibility="{Binding IsStocker4Visibility}" Text="4" FontSize="13" FontFamily="Arial" Canvas.Left="832" Canvas.Top="304" Foreground="Black"/>
  474. <Image Visibility="{Binding IsStocker4Visibility}" Source="/FurnaceUI;component/Resources/Images/Controls3/bg1.png" Canvas.Left="845" Canvas.Top="265" />
  475. <Image Width="80" Panel.ZIndex="-1" Source="/FurnaceUI;component/Resources/Images/Controls3/StockerHidden.png" Canvas.Left="845" Canvas.Top="265" />
  476. <deviceControl:AITSensor Visibility="{Binding IsStocker4Visibility}" GreenColor="True" LightOnValue="{Binding SensorStation4Presence}" Canvas.Left="827" Canvas.Top="320"/>
  477. <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"/>
  478. <TextBlock Visibility="{Binding IsStocker5Visibility}" Text="5" FontSize="13" FontFamily="Arial" Canvas.Left="475" Canvas.Top="214" Foreground="Black"/>
  479. <Image Visibility="{Binding IsStocker5Visibility}" Source="/FurnaceUI;component/Resources/Images/Controls3/bg1.png" Canvas.Left="491" Canvas.Top="175" />
  480. <Image Width="80" Panel.ZIndex="-1" Source="/FurnaceUI;component/Resources/Images/Controls3/StockerHidden.png" Canvas.Left="491" Canvas.Top="175" />
  481. <deviceControl:AITSensor Visibility="{Binding IsStocker5Visibility}" GreenColor="True" LightOnValue="{Binding SensorStation5Presence}" Canvas.Left="471" Canvas.Top="230"/>
  482. <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"/>
  483. <TextBlock Visibility="{Binding IsStocker6Visibility}" Text="6" FontSize="13" FontFamily="Arial" Canvas.Left="595" Canvas.Top="214" Foreground="Black"/>
  484. <Image Visibility="{Binding IsStocker6Visibility}" Source="/FurnaceUI;component/Resources/Images/Controls3/bg1.png" Canvas.Left="609" Canvas.Top="175" />
  485. <Image Width="80" Panel.ZIndex="-1" Source="/FurnaceUI;component/Resources/Images/Controls3/StockerHidden.png" Canvas.Left="609" Canvas.Top="175" />
  486. <deviceControl:AITSensor Visibility="{Binding IsStocker6Visibility}" GreenColor="True" LightOnValue="{Binding SensorStation6Presence}" Canvas.Left="591" Canvas.Top="230"/>
  487. <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"/>
  488. <TextBlock Visibility="{Binding IsStocker7Visibility}" Text="7" FontSize="13" FontFamily="Arial" Canvas.Left="713" Canvas.Top="214" Foreground="Black"/>
  489. <Image Visibility="{Binding IsStocker7Visibility}" Source="/FurnaceUI;component/Resources/Images/Controls3/bg1.png" Canvas.Left="727" Canvas.Top="175" />
  490. <Image Width="80" Panel.ZIndex="-1" Source="/FurnaceUI;component/Resources/Images/Controls3/StockerHidden.png" Canvas.Left="727" Canvas.Top="175" />
  491. <deviceControl:AITSensor Visibility="{Binding IsStocker7Visibility}" GreenColor="True" LightOnValue="{Binding SensorStation7Presence}" Canvas.Left="708" Canvas.Top="230"/>
  492. <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"/>
  493. <TextBlock Text="8" Visibility="{Binding IsStocker8Visibility}" FontSize="13" FontFamily="Arial" Canvas.Left="832" Canvas.Top="214" Foreground="Black"/>
  494. <Image Visibility="{Binding IsStocker8Visibility}" Source="/FurnaceUI;component/Resources/Images/Controls3/bg1.png" Canvas.Left="845" Canvas.Top="175" />
  495. <Image Width="80" Panel.ZIndex="-1" Source="/FurnaceUI;component/Resources/Images/Controls3/StockerHidden.png" Canvas.Left="845" Canvas.Top="175" />
  496. <deviceControl:AITSensor Visibility="{Binding IsStocker8Visibility}" GreenColor="True" LightOnValue="{Binding SensorStation8Presence}" Canvas.Left="827" Canvas.Top="230"/>
  497. <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"/>
  498. <TextBlock Text="9" Visibility="{Binding IsStocker9Visibility}" FontSize="13" FontFamily="Arial" Canvas.Left="475" Canvas.Top="124" Foreground="Black"/>
  499. <Image Visibility="{Binding IsStocker9Visibility}" Source="/FurnaceUI;component/Resources/Images/Controls3/bg1.png" Canvas.Left="491" Canvas.Top="85" />
  500. <Image Width="80" Panel.ZIndex="-1" Source="/FurnaceUI;component/Resources/Images/Controls3/StockerHidden.png" Canvas.Left="491" Canvas.Top="85" />
  501. <deviceControl:AITSensor Visibility="{Binding IsStocker9Visibility}" GreenColor="True" LightOnValue="{Binding SensorStation9Presence}" Canvas.Left="471" Canvas.Top="140"/>
  502. <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"/>
  503. <TextBlock Visibility="{Binding IsStocker10Visibility}" Text="10" FontSize="13" FontFamily="Arial" Canvas.Left="588" Canvas.Top="124" Foreground="Black"/>
  504. <Image Visibility="{Binding IsStocker10Visibility}" Source="/FurnaceUI;component/Resources/Images/Controls3/bg1.png" Canvas.Left="609" Canvas.Top="85" />
  505. <Image Width="80" Panel.ZIndex="-1" Source="/FurnaceUI;component/Resources/Images/Controls3/StockerHidden.png" Canvas.Left="609" Canvas.Top="85" />
  506. <deviceControl:AITSensor Visibility="{Binding IsStocker10Visibility}" GreenColor="True" LightOnValue="{Binding SensorStation10Presence}" Canvas.Left="591" Canvas.Top="140"/>
  507. <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"/>
  508. <TextBlock Visibility="{Binding IsStocker11Visibility}" Text="11" FontSize="13" FontFamily="Arial" Canvas.Left="708" Canvas.Top="124" Foreground="Black"/>
  509. <Image Visibility="{Binding IsStocker11Visibility}" Source="/FurnaceUI;component/Resources/Images/Controls3/bg1.png" Canvas.Left="727" Canvas.Top="85" />
  510. <Image Width="80" Panel.ZIndex="-1" Source="/FurnaceUI;component/Resources/Images/Controls3/StockerHidden.png" Canvas.Left="727" Canvas.Top="85" />
  511. <deviceControl:AITSensor Visibility="{Binding IsStocker11Visibility}" GreenColor="True" LightOnValue="{Binding SensorStation11Presence}" Canvas.Left="708" Canvas.Top="140"/>
  512. <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"/>
  513. <TextBlock Visibility="{Binding IsStocker12Visibility}" Text="12" FontSize="13" FontFamily="Arial" Canvas.Left="827" Canvas.Top="124" Foreground="Black"/>
  514. <Image Visibility="{Binding IsStocker12Visibility}" Source="/FurnaceUI;component/Resources/Images/Controls3/bg1.png" Canvas.Left="845" Canvas.Top="85" />
  515. <Image Width="80" Panel.ZIndex="-1" Source="/FurnaceUI;component/Resources/Images/Controls3/StockerHidden.png" Canvas.Left="845" Canvas.Top="85" />
  516. <deviceControl:AITSensor Visibility="{Binding IsStocker12Visibility}" GreenColor="True" LightOnValue="{Binding SensorStation12Presence}" Canvas.Left="827" Canvas.Top="140"/>
  517. <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"/>
  518. <TextBlock Visibility="{Binding IsStocker13Visibility}" Text="13" FontSize="13" FontFamily="Arial" Canvas.Left="470" Canvas.Top="34" Foreground="Black"/>
  519. <Image Visibility="{Binding IsStocker13Visibility}" Source="/FurnaceUI;component/Resources/Images/Controls3/bg1.png" Canvas.Left="491" Canvas.Top="-5" />
  520. <Image Width="80" Panel.ZIndex="-1" Source="/FurnaceUI;component/Resources/Images/Controls3/StockerHidden.png" Canvas.Left="491" Canvas.Top="-5" />
  521. <deviceControl:AITSensor Visibility="{Binding IsStocker13Visibility}" GreenColor="True" LightOnValue="{Binding SensorStation13Presence}" Canvas.Left="471" Canvas.Top="48"/>
  522. <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"/>
  523. <TextBlock Text="14" Visibility="{Binding IsStocker14Visibility}" FontSize="13" FontFamily="Arial" Canvas.Left="588" Canvas.Top="34" Foreground="Black"/>
  524. <Image Visibility="{Binding IsStocker14Visibility}" Source="/FurnaceUI;component/Resources/Images/Controls3/bg1.png" Canvas.Left="609" Canvas.Top="-5" />
  525. <Image Width="80" Panel.ZIndex="-1" Source="/FurnaceUI;component/Resources/Images/Controls3/StockerHidden.png" Canvas.Left="609" Canvas.Top="-5" />
  526. <deviceControl:AITSensor Visibility="{Binding IsStocker14Visibility}" GreenColor="True" LightOnValue="{Binding SensorStation14Presence}" Canvas.Left="591" Canvas.Top="48"/>
  527. <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"/>
  528. <TextBlock Visibility="{Binding IsStocker15Visibility}" Text="15" FontSize="13" FontFamily="Arial" Canvas.Left="708" Canvas.Top="34" Foreground="Black"/>
  529. <Image Visibility="{Binding IsStocker15Visibility}" Source="/FurnaceUI;component/Resources/Images/Controls3/bg1.png" Canvas.Left="727" Canvas.Top="-5" />
  530. <Image Width="80" Panel.ZIndex="-1" Source="/FurnaceUI;component/Resources/Images/Controls3/StockerHidden.png" Canvas.Left="727" Canvas.Top="-5" />
  531. <deviceControl:AITSensor Visibility="{Binding IsStocker15Visibility}" GreenColor="True" LightOnValue="{Binding SensorStation15Presence}" Canvas.Left="708" Canvas.Top="48"/>
  532. <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"/>
  533. <TextBlock Visibility="{Binding IsStocker16Visibility}" Text="16" FontSize="13" FontFamily="Arial" Canvas.Left="827" Canvas.Top="34" Foreground="Black"/>
  534. <Image Visibility="{Binding IsStocker16Visibility}" Source="/FurnaceUI;component/Resources/Images/Controls3/bg1.png" Canvas.Left="845" Canvas.Top="-5" />
  535. <Image Width="80" Panel.ZIndex="-1" Source="/FurnaceUI;component/Resources/Images/Controls3/StockerHidden.png" Canvas.Left="845" Canvas.Top="-5" />
  536. <deviceControl:AITSensor Visibility="{Binding IsStocker16Visibility}" GreenColor="True" LightOnValue="{Binding SensorStation16Presence}" Canvas.Left="827" Canvas.Top="48"/>
  537. <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"/>
  538. <TextBlock Visibility="{Binding IsStocker17Visibility}" Text="17" FontSize="13" FontFamily="Arial" Canvas.Left="-1" Canvas.Top="214" Foreground="Black"/>
  539. <Image Visibility="{Binding IsStocker17Visibility}" Source="/FurnaceUI;component/Resources/Images/Controls3/bg1.png" Canvas.Left="21" Canvas.Top="175" />
  540. <Image Width="80" Panel.ZIndex="-1" Source="/FurnaceUI;component/Resources/Images/Controls3/StockerHidden.png" Canvas.Left="21" Canvas.Top="175" />
  541. <deviceControl:AITSensor Visibility="{Binding IsStocker17Visibility}" GreenColor="True" LightOnValue="{Binding SensorStation17Presence}" Canvas.Left="1" Canvas.Top="230" />
  542. <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"/>
  543. <TextBlock Text="18" FontSize="13" FontFamily="Arial" Canvas.Left="119" Canvas.Top="214" Visibility="{Binding IsStocker18Visibility}" Foreground="Black"/>
  544. <Image Source="/FurnaceUI;component/Resources/Images/Controls3/bg1.png" Canvas.Left="139" Canvas.Top="175" Visibility="{Binding IsStocker18Visibility}"/>
  545. <Image Source="/FurnaceUI;component/Resources/Images/Controls3/StockerHidden.png" Canvas.Left="139" Canvas.Top="175" Width="80" Panel.ZIndex="-1"/>
  546. <deviceControl:AITSensor GreenColor="True" LightOnValue="{Binding SensorStation18Presence}" Canvas.Left="119" Canvas.Top="230" Visibility="{Binding IsStocker18Visibility}"/>
  547. <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}"/>
  548. <!--<Image Source="/FurnaceUI;component/Resources/Images/Controls3/bg1.png" Canvas.Left="21" Canvas.Top="388" Visibility="{Binding IsLPVisibility}"/>
  549. <Image Source="/FurnaceUI;component/Resources/Images/Controls3/bg1.png" Canvas.Left="139" Canvas.Top="388" Visibility="{Binding IsLPVisibility}"/>-->
  550. <!--<TextBlock Text="17" FontSize="13" FontFamily="Arial" Canvas.Left="-1" Canvas.Top="424" Visibility="{Binding IsLPVisibility}"/>
  551. <TextBlock Text="18" FontSize="13" FontFamily="Arial" Canvas.Left="119" Canvas.Top="424" Visibility="{Binding IsLPVisibility}"/>-->
  552. <TextBlock Text="{Binding StockerWaferType[17]}" FontSize="13" FontFamily="Arial" Canvas.Left="119" Canvas.Top="194" />
  553. <TextBlock Text="{Binding StockerWaferType[16]}" FontSize="13" FontFamily="Arial" Canvas.Left="-1" Canvas.Top="194" />
  554. <!--<TextBlock Text="{Binding StockerWaferType[17]}" FontSize="13" FontFamily="Arial" Canvas.Left="119" Canvas.Top="404" Visibility="{Binding IsLPVisibility}"/>
  555. <TextBlock Text="{Binding StockerWaferType[16]}" FontSize="13" FontFamily="Arial" Canvas.Left="-1" Canvas.Top="404" Visibility="{Binding IsLPVisibility}"/>-->
  556. <TextBlock Text="{Binding StockerWaferType[15]}" FontSize="13" FontFamily="Arial" Canvas.Left="835" Canvas.Top="224"/>
  557. <TextBlock Text="{Binding StockerWaferType[14]}" FontSize="13" FontFamily="Arial" Canvas.Left="715" Canvas.Top="224"/>
  558. <TextBlock Text="{Binding StockerWaferType[13]}" FontSize="13" FontFamily="Arial" Canvas.Left="595" Canvas.Top="224"/>
  559. <TextBlock Text="{Binding StockerWaferType[12]}" FontSize="13" FontFamily="Arial" Canvas.Left="475" Canvas.Top="224"/>
  560. <TextBlock Text="{Binding StockerWaferType[11]}" FontSize="13" FontFamily="Arial" Canvas.Left="835" Canvas.Top="134"/>
  561. <TextBlock Text="{Binding StockerWaferType[10]}" FontSize="13" FontFamily="Arial" Canvas.Left="715" Canvas.Top="134"/>
  562. <TextBlock Text="{Binding StockerWaferType[9]}" FontSize="13" FontFamily="Arial" Canvas.Left="595" Canvas.Top="134"/>
  563. <TextBlock Text="{Binding StockerWaferType[8]}" FontSize="13" FontFamily="Arial" Canvas.Left="475" Canvas.Top="134"/>
  564. <TextBlock Text="{Binding StockerWaferType[7]}" FontSize="13" FontFamily="Arial" Canvas.Left="835" Canvas.Top="44"/>
  565. <TextBlock Text="{Binding StockerWaferType[6]}" FontSize="13" FontFamily="Arial" Canvas.Left="715" Canvas.Top="44"/>
  566. <TextBlock Text="{Binding StockerWaferType[5]}" FontSize="13" FontFamily="Arial" Canvas.Left="595" Canvas.Top="44"/>
  567. <TextBlock Text="{Binding StockerWaferType[4]}" FontSize="13" FontFamily="Arial" Canvas.Left="475" Canvas.Top="44"/>
  568. <TextBlock Text="{Binding StockerWaferType[3]}" FontSize="13" FontFamily="Arial" Canvas.Left="835" Canvas.Top="-54"/>
  569. <TextBlock Text="{Binding StockerWaferType[2]}" FontSize="13" FontFamily="Arial" Canvas.Left="715" Canvas.Top="-54"/>
  570. <TextBlock Text="{Binding StockerWaferType[1]}" FontSize="13" FontFamily="Arial" Canvas.Left="595" Canvas.Top="-54"/>
  571. <TextBlock Text="{Binding StockerWaferType[0]}" FontSize="13" FontFamily="Arial" Canvas.Left="475" Canvas.Top="-54"/>
  572. <parts:CassetteView CarrierModule="FIMS2" CarrierData="{Binding FIMS2CarrierData}" CassetteType="{Binding FIMS2CarrierData.CarrierType}" WaferCount="{Binding FIMS2WaferCount}" Canvas.Left="618" Canvas.Top="386" Width="65" Height="65"/>
  573. <parts:CassetteView CarrierModule="FIMS1" CarrierData="{Binding FIMS1CarrierData}" CassetteType="{Binding FIMS1CarrierData.CarrierType}" WaferCount="{Binding FIMS1WaferCount}" Canvas.Left="618" Canvas.Top="536" Width="65" Height="65"/>
  574. <!--<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}"/>
  575. <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}"/>-->
  576. <parts:CassetteView CarrierModule="LP3" CarrierData="{Binding LP3CarrierData}" CassetteType="{Binding LP3CarrierData.CarrierType}" WaferCount="{Binding LP3WaferCount}" Canvas.Left="27" Canvas.Top="52" Width="65" Height="65"/>
  577. <parts:CassetteView CarrierModule="LP4" CarrierData="{Binding LP4CarrierData}" CassetteType="{Binding LP4CarrierData.CarrierType}" WaferCount="{Binding LP4WaferCount}" Canvas.Left="146" Canvas.Top="52" Width="65" Height="64"/>
  578. <parts:CassetteView CarrierModule="LP1" CarrierData="{Binding LP1CarrierData}" CassetteType="{Binding LP1CarrierData.CarrierType}" WaferCount="{Binding LP1WaferCount}" Canvas.Left="27" Canvas.Top="332" Width="65" Height="65"/>
  579. <parts:CassetteView CarrierModule="LP2" CarrierData="{Binding LP2CarrierData}" CassetteType="{Binding LP2CarrierData.CarrierType}" WaferCount="{Binding LP2WaferCount}" Canvas.Left="146" Canvas.Top="332" Width="65" Height="64"/>
  580. <!--<deviceControl:AITSensor GreenColor="True" LightOnValue="{Binding Stage17FOUPSensor1}" Canvas.Left="1" Canvas.Top="444" Visibility="{Binding IsLPVisibility}"/>
  581. <deviceControl:AITSensor GreenColor="True" LightOnValue="{Binding Stage18FOUPSensor1}" Canvas.Left="119" Canvas.Top="444" Visibility="{Binding IsLPVisibility}"/>-->
  582. <!--<Image Source="/FurnaceUI;component/Resources/Images/Controls2/16.png" Canvas.Left="296" Canvas.Top="320" Stretch="None" Visibility="Hidden"/>
  583. <Image Source="/FurnaceUI;component/Resources/Images/Controls2/16.png" Canvas.Left="296" Canvas.Top="424" Stretch="None" Visibility="Hidden"/>
  584. <Image Source="/FurnaceUI;component/Resources/Images/Controls2/16.png" Canvas.Left="440" Canvas.Top="104" Stretch="None" Visibility="Hidden"/>
  585. <Image Source="/FurnaceUI;component/Resources/Images/Controls2/16.png" Canvas.Left="440" Canvas.Top="194" Stretch="None" Visibility="Hidden"/>
  586. <Image Source="/FurnaceUI;component/Resources/Images/Controls2/16.png" Canvas.Left="440" Canvas.Top="282" Stretch="None" Visibility="Hidden"/>
  587. <Image Source="/FurnaceUI;component/Resources/Images/Controls2/16.png" Canvas.Left="440" Canvas.Top="370" Stretch="None" Visibility="Hidden"/>
  588. <Image Source="/FurnaceUI;component/Resources/Images/Controls2/16.png" Canvas.Left="440" Canvas.Top="458" Stretch="None" Visibility="Hidden"/>
  589. <Image Source="/FurnaceUI;component/Resources/Images/Controls2/16.png" Canvas.Left="440" Canvas.Top="544" Stretch="None" Visibility="Hidden"/>-->
  590. <parts:ATMArmRobotTwo x:Name="ATMArmRobotTwo" WaferRobotStatus="{Binding WaferRobotStatus}" StationPosition="{Binding StationPosition2}" Wafer1="{Binding RobotWafer1}" Wafer2="{Binding WaferRobotWafer2}" Wafer3="{Binding WaferRobotWafer3}"
  591. Wafer4="{Binding WaferRobotWafer4}" Wafer5="{Binding WaferRobotWafer5}" RobotMoveInfo="{Binding WaferRobotMoveInfo}" Canvas.Left="760" Canvas.Top="616"/>
  592. <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}}"/>
  593. <Image Source="/FurnaceUI;component/Resources/Images/Controls3/01.png" Canvas.Left="1020" Canvas.Top="77" Opacity="0.8"/>
  594. <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"/>
  595. <!--<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">
  596. <Grid>
  597. <Grid.RowDefinitions>
  598. <RowDefinition Height="36"/>
  599. <RowDefinition Height="36"/>
  600. </Grid.RowDefinitions>
  601. <Grid.ColumnDefinitions>
  602. <ColumnDefinition Width="45"/>
  603. <ColumnDefinition Width="60"/>
  604. <ColumnDefinition Width="45"/>
  605. <ColumnDefinition Width="60"/>
  606. <ColumnDefinition Width="45"/>
  607. <ColumnDefinition Width="60"/>
  608. </Grid.ColumnDefinitions>
  609. <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">
  610. <TextBlock Text="P" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="10,0,0,0"/>
  611. </Border>
  612. <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">
  613. <TextBlock Text="{Binding BoatPWaferCount}" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="2,0,0,0"/>
  614. </Border>
  615. <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">
  616. <TextBlock Text="M" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="10,0,0,0"/>
  617. </Border>
  618. <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">
  619. <TextBlock Text="{Binding BoatMWaferCount}" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="2,0,0,0"/>
  620. </Border>
  621. <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">
  622. <TextBlock Text="SD" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="10,0,0,0"/>
  623. </Border>
  624. <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">
  625. <TextBlock Text="{Binding BoatSDWaferCount}" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="2,0,0,0"/>
  626. </Border>
  627. <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">
  628. <TextBlock Text="ED" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="10,0,0,0"/>
  629. </Border>
  630. <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">
  631. <TextBlock Text="{Binding BoatEDWaferCount}" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="2,0,0,0"/>
  632. </Border>
  633. <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">
  634. <TextBlock Text="Empty" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="0,0,0,0"/>
  635. </Border>
  636. <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">
  637. <TextBlock Text="{Binding BoatEmptyWaferCount}" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="2,0,0,0"/>
  638. </Border>
  639. <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">
  640. <TextBlock Text="All" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="10,0,0,0"/>
  641. </Border>
  642. <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">
  643. <TextBlock Text="{Binding BoatAllWaferCount}" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="2,0,0,0"/>
  644. </Border>
  645. </Grid>
  646. </Border>-->
  647. </Canvas>
  648. </Canvas>
  649. </ContentControl>
  650. <i:Interaction.Triggers>
  651. <i:EventTrigger EventName="Click">
  652. <cal:ActionMessage MethodName="SwitchPage">
  653. <cal:Parameter Value="TransferMain"/>
  654. </cal:ActionMessage>
  655. </i:EventTrigger>
  656. </i:Interaction.Triggers>
  657. </Button>
  658. <Grid Grid.Row="1" Grid.Column="1" Margin="0,0,0,0">
  659. <Grid.ColumnDefinitions>
  660. <ColumnDefinition/>
  661. <ColumnDefinition/>
  662. </Grid.ColumnDefinitions>
  663. <Button Visibility="{Binding IsNTPVisibility}" Grid.Row="0" Grid.Column="0" Margin="0,5,5,-11" Style="{StaticResource MainArea_Button}" VerticalContentAlignment="Stretch" HorizontalContentAlignment="Stretch" >
  664. <ContentControl >
  665. <Canvas >
  666. <TextBlock Text="Gas" HorizontalAlignment="Center" Style="{StaticResource TextBlock_Title}" VerticalAlignment="Bottom" FontSize="16" Margin="0" Canvas.Left="60"/>
  667. <Image Source="/FurnaceUI;component/Resources/images/icons/Gas44.png" Width="40" Canvas.Left="1"/>
  668. <Grid x:Name="PM1_Info2" Grid.Column="1" Visibility="{Binding IsPMAVisibility}" Height="440" Canvas.Top="42">
  669. <Grid.RowDefinitions>
  670. <RowDefinition Height="0"/>
  671. <RowDefinition Height="20"/>
  672. <RowDefinition Height="28"/>
  673. <RowDefinition Height="28"/>
  674. <RowDefinition Height="28"/>
  675. <RowDefinition Height="28"/>
  676. <RowDefinition Height="28"/>
  677. <RowDefinition Height="28"/>
  678. <RowDefinition Height="28"/>
  679. <RowDefinition Height="28"/>
  680. <RowDefinition Height="28"/>
  681. <RowDefinition Height="28"/>
  682. <RowDefinition Height="28"/>
  683. <RowDefinition Height="28"/>
  684. <RowDefinition Height="28"/>
  685. <RowDefinition Height="28"/>
  686. <RowDefinition Height="28"/>
  687. </Grid.RowDefinitions>
  688. <Grid.ColumnDefinitions>
  689. <ColumnDefinition Width="100"/>
  690. <ColumnDefinition Width="60"/>
  691. <ColumnDefinition Width="60"/>
  692. <ColumnDefinition Width="60"/>
  693. </Grid.ColumnDefinitions>
  694. <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">
  695. </Border>
  696. <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">
  697. <Label Content="{Binding VG21Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="16" HorizontalAlignment="Center" VerticalAlignment="Center" />
  698. </Border>
  699. <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">
  700. <Label Content="{Binding VG22Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="16" HorizontalAlignment="Center" VerticalAlignment="Center" />
  701. </Border>
  702. <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">
  703. <Label Content="{Binding MFC1Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="16" HorizontalAlignment="Center" VerticalAlignment="Center" />
  704. </Border>
  705. <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">
  706. <Label Content="{Binding MFC2Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="16" HorizontalAlignment="Center" VerticalAlignment="Center" />
  707. </Border>
  708. <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">
  709. <Label Content="{Binding MFC3Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="16" HorizontalAlignment="Center" VerticalAlignment="Center" />
  710. </Border>
  711. <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">
  712. <Label Content="{Binding MFC4Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="16" HorizontalAlignment="Center" VerticalAlignment="Center" />
  713. </Border>
  714. <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">
  715. <Label Content="{Binding MFC5Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="16" HorizontalAlignment="Center" VerticalAlignment="Center" />
  716. </Border>
  717. <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">
  718. <Label Content="{Binding MFC6Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="16" HorizontalAlignment="Center" VerticalAlignment="Center" />
  719. </Border>
  720. <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">
  721. <Label Content="{Binding MFC7Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="16" HorizontalAlignment="Center" VerticalAlignment="Center" />
  722. </Border>
  723. <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">
  724. <Label Content="{Binding MFC8Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="16" HorizontalAlignment="Center" VerticalAlignment="Center" />
  725. </Border>
  726. <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">
  727. <Label Content="{Binding MFC9Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="16" HorizontalAlignment="Center" VerticalAlignment="Center" />
  728. </Border>
  729. <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">
  730. <Label Content="{Binding MFC10Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="16" HorizontalAlignment="Center" VerticalAlignment="Center" />
  731. </Border>
  732. <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">
  733. <Label Content="{Binding MFC11Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="16" HorizontalAlignment="Center" VerticalAlignment="Center" />
  734. </Border>
  735. <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">
  736. <Label Content="{Binding MFC12Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="16" HorizontalAlignment="Center" VerticalAlignment="Center" />
  737. </Border>
  738. <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">
  739. <Label Content="{Binding MFC51Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="16" HorizontalAlignment="Center" VerticalAlignment="Center" />
  740. </Border>
  741. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,1,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="1" Grid.Column="1">
  742. <TextBlock Text="Actual" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  743. </Border>
  744. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,1,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="1" Grid.Column="2">
  745. <TextBlock Text="Set" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  746. </Border>
  747. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="2" Grid.Column="1">
  748. <TextBlock Text="{Binding VG21Data.FeedBack,StringFormat={}{0:f3}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  749. </Border>
  750. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="2" Grid.Column="2">
  751. <TextBlock Text="{Binding VG21Data.SetPoint,StringFormat={}{0:f3}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center" />
  752. </Border>
  753. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="3" Grid.Column="1">
  754. <TextBlock Text="{Binding VG22Data.FeedBack,StringFormat={}{0:f3}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  755. </Border>
  756. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="3" Grid.Column="2">
  757. <TextBlock Text="{Binding VG22Data.SetPoint,StringFormat={}{0:f3}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center" />
  758. </Border>
  759. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="4" Grid.Column="1">
  760. <TextBlock Text="{Binding MFC1Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  761. </Border>
  762. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="4" Grid.Column="2">
  763. <TextBlock Text="{Binding MFC1Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center" />
  764. </Border>
  765. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="5" Grid.Column="1">
  766. <TextBlock Text="{Binding MFC2Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  767. </Border>
  768. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="5" Grid.Column="2">
  769. <TextBlock Text="{Binding MFC2Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center" />
  770. </Border>
  771. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="6" Grid.Column="1">
  772. <TextBlock Text="{Binding MFC3Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  773. </Border>
  774. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="6" Grid.Column="2">
  775. <TextBlock Text="{Binding MFC3Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center" />
  776. </Border>
  777. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="7" Grid.Column="1">
  778. <TextBlock Text="{Binding MFC4Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  779. </Border>
  780. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="7" Grid.Column="2">
  781. <TextBlock Text="{Binding MFC4Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center" />
  782. </Border>
  783. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="8" Grid.Column="1">
  784. <TextBlock Text="{Binding MFC5Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  785. </Border>
  786. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="8" Grid.Column="2">
  787. <TextBlock Text="{Binding MFC5Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center" />
  788. </Border>
  789. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="9" Grid.Column="1">
  790. <TextBlock Text="{Binding MFC6Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  791. </Border>
  792. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="9" Grid.Column="2">
  793. <TextBlock Text="{Binding MFC6Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center" />
  794. </Border>
  795. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="10" Grid.Column="1">
  796. <TextBlock Text="{Binding MFC7Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  797. </Border>
  798. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="10" Grid.Column="2">
  799. <TextBlock Text="{Binding MFC7Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center" />
  800. </Border>
  801. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="11" Grid.Column="1">
  802. <TextBlock Text="{Binding MFC8Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  803. </Border>
  804. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="11" Grid.Column="2">
  805. <TextBlock Text="{Binding MFC8Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center" />
  806. </Border>
  807. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="12" Grid.Column="1">
  808. <TextBlock Text="{Binding MFC9Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  809. </Border>
  810. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="12" Grid.Column="2">
  811. <TextBlock Text="{Binding MFC9Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center" />
  812. </Border>
  813. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="13" Grid.Column="1">
  814. <TextBlock Text="{Binding MFC10Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  815. </Border>
  816. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="13" Grid.Column="2">
  817. <TextBlock Text="{Binding MFC10Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center" />
  818. </Border>
  819. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="14" Grid.Column="1">
  820. <TextBlock Text="{Binding MFC11Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  821. </Border>
  822. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="14" Grid.Column="2">
  823. <TextBlock Text="{Binding MFC11Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center" />
  824. </Border>
  825. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="15" Grid.Column="1">
  826. <TextBlock Text="{Binding MFC12Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  827. </Border>
  828. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="15" Grid.Column="2">
  829. <TextBlock Text="{Binding MFC12Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center" />
  830. </Border>
  831. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="16" Grid.Column="1">
  832. <TextBlock Text="{Binding MFC51Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  833. </Border>
  834. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="16" Grid.Column="2">
  835. <TextBlock Text="{Binding MFC51Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Center" />
  836. </Border>
  837. <Label Content="{Binding DefaultUnit}" Grid.Row="2" Grid.Column="3"/>
  838. <Label Content="{Binding DefaultUnit}" Grid.Row="3" Grid.Column="3"/>
  839. <Label Content="{Binding MFC1Data.Unit}" Grid.Row="4" Grid.Column="3"/>
  840. <Label Content="{Binding MFC2Data.Unit}" Grid.Row="5" Grid.Column="3"/>
  841. <Label Content="{Binding MFC3Data.Unit}" Grid.Row="6" Grid.Column="3"/>
  842. <Label Content="{Binding MFC4Data.Unit}" Grid.Row="7" Grid.Column="3"/>
  843. <Label Content="{Binding MFC5Data.Unit}" Grid.Row="8" Grid.Column="3"/>
  844. <Label Content="{Binding MFC6Data.Unit}" Grid.Row="9" Grid.Column="3"/>
  845. <Label Content="{Binding MFC7Data.Unit}" Grid.Row="10" Grid.Column="3"/>
  846. <Label Content="{Binding MFC8Data.Unit}" Grid.Row="11" Grid.Column="3"/>
  847. <Label Content="{Binding MFC9Data.Unit}" Grid.Row="12" Grid.Column="3"/>
  848. <Label Content="{Binding MFC10Data.Unit}" Grid.Row="13" Grid.Column="3"/>
  849. <Label Content="{Binding MFC11Data.Unit}" Grid.Row="14" Grid.Column="3"/>
  850. <Label Content="{Binding MFC12Data.Unit}" Grid.Row="15" Grid.Column="3"/>
  851. <Label Content="{Binding MFC51Data.Unit}" Grid.Row="16" Grid.Column="3"/>
  852. <Grid.Resources>
  853. <Style TargetType="Label">
  854. <Setter Property="HorizontalContentAlignment" Value="Left"/>
  855. <Setter Property="VerticalContentAlignment" Value="Center"/>
  856. </Style>
  857. </Grid.Resources>
  858. </Grid>
  859. </Canvas>
  860. </ContentControl>
  861. <i:Interaction.Triggers>
  862. <i:EventTrigger EventName="Click">
  863. <cal:ActionMessage MethodName="SwitchPage">
  864. <cal:Parameter Value="Gas"/>
  865. </cal:ActionMessage>
  866. </i:EventTrigger>
  867. </i:Interaction.Triggers>
  868. </Button>
  869. <Button Visibility="{Binding IsSiBCNVisibility}" Grid.Row="0" Grid.Column="0" Margin="0,5,5,-11" Style="{StaticResource MainArea_Button}" VerticalContentAlignment="Stretch" HorizontalContentAlignment="Stretch" >
  870. <ContentControl >
  871. <Canvas >
  872. <TextBlock Text="Gas" HorizontalAlignment="Center" Style="{StaticResource TextBlock_Title}" VerticalAlignment="Bottom" FontSize="16" Margin="0" Canvas.Left="60"/>
  873. <Image Source="/FurnaceUI;component/Resources/images/icons/Gas44.png" Width="30" Canvas.Left="1"/>
  874. <Grid x:Name="PM1_Info3" Grid.Column="1" Visibility="{Binding IsPMAVisibility}" Height="460" Canvas.Top="30">
  875. <Grid.RowDefinitions>
  876. <RowDefinition Height="0"/>
  877. <RowDefinition Height="20"/>
  878. <RowDefinition Height="23"/>
  879. <RowDefinition Height="23"/>
  880. <RowDefinition Height="23"/>
  881. <RowDefinition Height="23"/>
  882. <RowDefinition Height="23"/>
  883. <RowDefinition Height="23"/>
  884. <RowDefinition Height="23"/>
  885. <RowDefinition Height="23"/>
  886. <RowDefinition Height="23"/>
  887. <RowDefinition Height="23"/>
  888. <RowDefinition Height="23"/>
  889. <RowDefinition Height="23"/>
  890. <RowDefinition Height="23"/>
  891. <RowDefinition Height="23"/>
  892. <RowDefinition Height="23"/>
  893. <RowDefinition Height="23"/>
  894. <RowDefinition Height="23"/>
  895. <RowDefinition Height="23"/>
  896. <RowDefinition Height="23"/>
  897. </Grid.RowDefinitions>
  898. <Grid.ColumnDefinitions>
  899. <ColumnDefinition Width="100"/>
  900. <ColumnDefinition Width="60"/>
  901. <ColumnDefinition Width="60"/>
  902. <ColumnDefinition Width="60"/>
  903. </Grid.ColumnDefinitions>
  904. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="1" Grid.Column="0">
  905. </Border>
  906. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="2" Grid.Column="0" >
  907. <Label Content="{Binding VG21Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
  908. </Border>
  909. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="3" Grid.Column="0" >
  910. <Label Content="{Binding VG22Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
  911. </Border>
  912. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="4" Grid.Column="0" >
  913. <Label Content="{Binding MFC1Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
  914. </Border>
  915. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="5" Grid.Column="0" >
  916. <Label Content="{Binding MFC2Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
  917. </Border>
  918. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="6" Grid.Column="0" >
  919. <Label Content="{Binding MFC3Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
  920. </Border>
  921. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="7" Grid.Column="0" >
  922. <Label Content="{Binding MFC4Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
  923. </Border>
  924. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="8" Grid.Column="0" >
  925. <Label Content="{Binding MFC5Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
  926. </Border>
  927. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="9" Grid.Column="0" >
  928. <Label Content="{Binding MFC6Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
  929. </Border>
  930. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="10" Grid.Column="0" >
  931. <Label Content="{Binding MFC7Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
  932. </Border>
  933. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="11" Grid.Column="0" >
  934. <Label Content="{Binding MFC8Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
  935. </Border>
  936. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="12" Grid.Column="0" >
  937. <Label Content="{Binding MFC9Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
  938. </Border>
  939. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="13" Grid.Column="0" >
  940. <Label Content="{Binding MFC10Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
  941. </Border>
  942. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="14" Grid.Column="0" >
  943. <Label Content="{Binding MFC11Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
  944. </Border>
  945. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="15" Grid.Column="0" >
  946. <Label Content="{Binding MFC12Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
  947. </Border>
  948. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="16" Grid.Column="0" >
  949. <Label Content="{Binding MFC13Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
  950. </Border>
  951. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="17" Grid.Column="0" >
  952. <Label Content="{Binding MFC14Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
  953. </Border>
  954. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="18" Grid.Column="0" >
  955. <Label Content="{Binding MFC15Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
  956. </Border>
  957. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="19" Grid.Column="0" >
  958. <Label Content="{Binding MFC16Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
  959. </Border>
  960. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="20" Grid.Column="0" >
  961. <Label Content="{Binding MFC51Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
  962. </Border>
  963. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,1,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="1" Grid.Column="1">
  964. <TextBlock Text="Actual" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  965. </Border>
  966. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,1,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="1" Grid.Column="2">
  967. <TextBlock Text="Set" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  968. </Border>
  969. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="2" Grid.Column="1">
  970. <TextBlock Text="{Binding VG21Data.FeedBack,StringFormat={}{0:f3}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  971. </Border>
  972. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="2" Grid.Column="2">
  973. <TextBlock Text="{Binding VG21Data.SetPoint,StringFormat={}{0:f3}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
  974. </Border>
  975. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="3" Grid.Column="1">
  976. <TextBlock Text="{Binding VG22Data.FeedBack,StringFormat={}{0:f3}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  977. </Border>
  978. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="3" Grid.Column="2">
  979. <TextBlock Text="{Binding VG22Data.SetPoint,StringFormat={}{0:f3}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
  980. </Border>
  981. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="4" Grid.Column="1">
  982. <TextBlock Text="{Binding MFC1Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  983. </Border>
  984. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="4" Grid.Column="2">
  985. <TextBlock Text="{Binding MFC1Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
  986. </Border>
  987. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="5" Grid.Column="1">
  988. <TextBlock Text="{Binding MFC2Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  989. </Border>
  990. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="5" Grid.Column="2">
  991. <TextBlock Text="{Binding MFC2Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
  992. </Border>
  993. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="6" Grid.Column="1">
  994. <TextBlock Text="{Binding MFC3Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  995. </Border>
  996. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="6" Grid.Column="2">
  997. <TextBlock Text="{Binding MFC3Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
  998. </Border>
  999. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="7" Grid.Column="1">
  1000. <TextBlock Text="{Binding MFC4Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  1001. </Border>
  1002. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="7" Grid.Column="2">
  1003. <TextBlock Text="{Binding MFC4Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
  1004. </Border>
  1005. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="8" Grid.Column="1">
  1006. <TextBlock Text="{Binding MFC5Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  1007. </Border>
  1008. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="8" Grid.Column="2">
  1009. <TextBlock Text="{Binding MFC5Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
  1010. </Border>
  1011. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="9" Grid.Column="1">
  1012. <TextBlock Text="{Binding MFC6Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  1013. </Border>
  1014. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="9" Grid.Column="2">
  1015. <TextBlock Text="{Binding MFC6Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
  1016. </Border>
  1017. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="10" Grid.Column="1">
  1018. <TextBlock Text="{Binding MFC7Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  1019. </Border>
  1020. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="10" Grid.Column="2">
  1021. <TextBlock Text="{Binding MFC7Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
  1022. </Border>
  1023. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="11" Grid.Column="1">
  1024. <TextBlock Text="{Binding MFC8Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  1025. </Border>
  1026. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="11" Grid.Column="2">
  1027. <TextBlock Text="{Binding MFC8Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
  1028. </Border>
  1029. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="12" Grid.Column="1">
  1030. <TextBlock Text="{Binding MFC9Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  1031. </Border>
  1032. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="12" Grid.Column="2">
  1033. <TextBlock Text="{Binding MFC9Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
  1034. </Border>
  1035. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="13" Grid.Column="1">
  1036. <TextBlock Text="{Binding MFC10Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  1037. </Border>
  1038. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="13" Grid.Column="2">
  1039. <TextBlock Text="{Binding MFC10Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
  1040. </Border>
  1041. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="14" Grid.Column="1">
  1042. <TextBlock Text="{Binding MFC11Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  1043. </Border>
  1044. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="14" Grid.Column="2">
  1045. <TextBlock Text="{Binding MFC11Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
  1046. </Border>
  1047. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="15" Grid.Column="1">
  1048. <TextBlock Text="{Binding MFC12Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  1049. </Border>
  1050. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="15" Grid.Column="2">
  1051. <TextBlock Text="{Binding MFC12Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
  1052. </Border>
  1053. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="16" Grid.Column="1">
  1054. <TextBlock Text="{Binding MFC13Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  1055. </Border>
  1056. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="16" Grid.Column="2">
  1057. <TextBlock Text="{Binding MFC13Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
  1058. </Border>
  1059. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="17" Grid.Column="1">
  1060. <TextBlock Text="{Binding MFC14Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  1061. </Border>
  1062. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="17" Grid.Column="2">
  1063. <TextBlock Text="{Binding MFC14Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
  1064. </Border>
  1065. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="18" Grid.Column="1">
  1066. <TextBlock Text="{Binding MFC15Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  1067. </Border>
  1068. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="18" Grid.Column="2">
  1069. <TextBlock Text="{Binding MFC15Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
  1070. </Border>
  1071. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="19" Grid.Column="1">
  1072. <TextBlock Text="{Binding MFC16Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  1073. </Border>
  1074. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="19" Grid.Column="2">
  1075. <TextBlock Text="{Binding MFC16Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
  1076. </Border>
  1077. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="20" Grid.Column="1">
  1078. <TextBlock Text="{Binding MFC51Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  1079. </Border>
  1080. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="20" Grid.Column="2">
  1081. <TextBlock Text="{Binding MFC51Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
  1082. </Border>
  1083. <Label Content="{Binding DefaultUnit}" Grid.Row="2" Grid.Column="3"/>
  1084. <Label Content="{Binding DefaultUnit}" Grid.Row="3" Grid.Column="3"/>
  1085. <Label Content="{Binding MFC1Data.Unit}" Grid.Row="4" Grid.Column="3"/>
  1086. <Label Content="{Binding MFC2Data.Unit}" Grid.Row="5" Grid.Column="3"/>
  1087. <Label Content="{Binding MFC3Data.Unit}" Grid.Row="6" Grid.Column="3"/>
  1088. <Label Content="{Binding MFC4Data.Unit}" Grid.Row="7" Grid.Column="3"/>
  1089. <Label Content="{Binding MFC5Data.Unit}" Grid.Row="8" Grid.Column="3"/>
  1090. <Label Content="{Binding MFC6Data.Unit}" Grid.Row="9" Grid.Column="3"/>
  1091. <Label Content="{Binding MFC7Data.Unit}" Grid.Row="10" Grid.Column="3"/>
  1092. <Label Content="{Binding MFC8Data.Unit}" Grid.Row="11" Grid.Column="3"/>
  1093. <Label Content="{Binding MFC9Data.Unit}" Grid.Row="12" Grid.Column="3"/>
  1094. <Label Content="{Binding MFC10Data.Unit}" Grid.Row="13" Grid.Column="3"/>
  1095. <Label Content="{Binding MFC11Data.Unit}" Grid.Row="14" Grid.Column="3"/>
  1096. <Label Content="{Binding MFC12Data.Unit}" Grid.Row="15" Grid.Column="3"/>
  1097. <Label Content="{Binding MFC13Data.Unit}" Grid.Row="16" Grid.Column="3"/>
  1098. <Label Content="{Binding MFC14Data.Unit}" Grid.Row="17" Grid.Column="3"/>
  1099. <Label Content="{Binding MFC15Data.Unit}" Grid.Row="18" Grid.Column="3"/>
  1100. <Label Content="{Binding MFC16Data.Unit}" Grid.Row="19" Grid.Column="3"/>
  1101. <Label Content="{Binding MFC51Data.Unit}" Grid.Row="20" Grid.Column="3"/>
  1102. <Grid.Resources>
  1103. <Style TargetType="Label">
  1104. <Setter Property="HorizontalContentAlignment" Value="Left"/>
  1105. <Setter Property="VerticalContentAlignment" Value="Center"/>
  1106. </Style>
  1107. </Grid.Resources>
  1108. </Grid>
  1109. </Canvas>
  1110. </ContentControl>
  1111. <i:Interaction.Triggers>
  1112. <i:EventTrigger EventName="Click">
  1113. <cal:ActionMessage MethodName="SwitchPage">
  1114. <cal:Parameter Value="Gas"/>
  1115. </cal:ActionMessage>
  1116. </i:EventTrigger>
  1117. </i:Interaction.Triggers>
  1118. </Button>
  1119. <Button Visibility="{Binding IsNTP02Visibility}" Grid.Row="0" Grid.Column="0" Margin="0,5,5,-11" Style="{StaticResource MainArea_Button}" VerticalContentAlignment="Stretch" HorizontalContentAlignment="Stretch" >
  1120. <ContentControl >
  1121. <Canvas >
  1122. <TextBlock Text="Gas" HorizontalAlignment="Center" Style="{StaticResource TextBlock_Title}" VerticalAlignment="Bottom" FontSize="16" Margin="0" Canvas.Left="60"/>
  1123. <Image Source="/FurnaceUI;component/Resources/images/icons/Gas44.png" Width="30" Canvas.Left="1"/>
  1124. <Grid x:Name="PM1_Info5" Grid.Column="1" Visibility="{Binding IsPMAVisibility}" Height="460" Canvas.Top="30">
  1125. <Grid.RowDefinitions>
  1126. <RowDefinition Height="0"/>
  1127. <RowDefinition Height="20"/>
  1128. <RowDefinition Height="23"/>
  1129. <RowDefinition Height="23"/>
  1130. <RowDefinition Height="23"/>
  1131. <RowDefinition Height="23"/>
  1132. <RowDefinition Height="23"/>
  1133. <RowDefinition Height="23"/>
  1134. <RowDefinition Height="23"/>
  1135. <RowDefinition Height="23"/>
  1136. <RowDefinition Height="23"/>
  1137. <RowDefinition Height="23"/>
  1138. <RowDefinition Height="23"/>
  1139. <RowDefinition Height="23"/>
  1140. <RowDefinition Height="23"/>
  1141. <RowDefinition Height="23"/>
  1142. <RowDefinition Height="23"/>
  1143. <RowDefinition Height="23"/>
  1144. <RowDefinition Height="23"/>
  1145. <RowDefinition Height="23"/>
  1146. <RowDefinition Height="23"/>
  1147. </Grid.RowDefinitions>
  1148. <Grid.ColumnDefinitions>
  1149. <ColumnDefinition Width="100"/>
  1150. <ColumnDefinition Width="60"/>
  1151. <ColumnDefinition Width="60"/>
  1152. <ColumnDefinition Width="60"/>
  1153. </Grid.ColumnDefinitions>
  1154. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="1" Grid.Column="0">
  1155. </Border>
  1156. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="2" Grid.Column="0" >
  1157. <Label Content="{Binding VG21Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
  1158. </Border>
  1159. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="3" Grid.Column="0" >
  1160. <Label Content="{Binding VG22Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
  1161. </Border>
  1162. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="4" Grid.Column="0" >
  1163. <Label Content="{Binding MFC1Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
  1164. </Border>
  1165. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="5" Grid.Column="0" >
  1166. <Label Content="{Binding MFC2Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
  1167. </Border>
  1168. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="6" Grid.Column="0" >
  1169. <Label Content="{Binding MFC3Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
  1170. </Border>
  1171. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="7" Grid.Column="0" >
  1172. <Label Content="{Binding MFC4Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
  1173. </Border>
  1174. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="8" Grid.Column="0" >
  1175. <Label Content="{Binding MFC5Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
  1176. </Border>
  1177. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="9" Grid.Column="0" >
  1178. <Label Content="{Binding MFC6Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
  1179. </Border>
  1180. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="10" Grid.Column="0" >
  1181. <Label Content="{Binding MFC7Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
  1182. </Border>
  1183. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="11" Grid.Column="0" >
  1184. <Label Content="{Binding MFC8Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
  1185. </Border>
  1186. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="12" Grid.Column="0" >
  1187. <Label Content="{Binding MFC9Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
  1188. </Border>
  1189. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="13" Grid.Column="0" >
  1190. <Label Content="{Binding MFC10Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
  1191. </Border>
  1192. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="14" Grid.Column="0" >
  1193. <Label Content="{Binding MFC11Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
  1194. </Border>
  1195. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="15" Grid.Column="0" >
  1196. <Label Content="{Binding MFC12Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
  1197. </Border>
  1198. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="16" Grid.Column="0" >
  1199. <Label Content="{Binding MFC13Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
  1200. </Border>
  1201. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="17" Grid.Column="0" >
  1202. <Label Content="{Binding MFC14Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
  1203. </Border>
  1204. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="18" Grid.Column="0" >
  1205. <Label Content="{Binding MFC15Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
  1206. </Border>
  1207. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="19" Grid.Column="0" >
  1208. <Label Content="{Binding MFC16Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
  1209. </Border>
  1210. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="20" Grid.Column="0" >
  1211. <Label Content="{Binding MFC51Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
  1212. </Border>
  1213. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,1,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="1" Grid.Column="1">
  1214. <TextBlock Text="Actual" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  1215. </Border>
  1216. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,1,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="1" Grid.Column="2">
  1217. <TextBlock Text="Set" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  1218. </Border>
  1219. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="2" Grid.Column="1">
  1220. <TextBlock Text="{Binding VG21Data.FeedBack,StringFormat={}{0:f3}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  1221. </Border>
  1222. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="2" Grid.Column="2">
  1223. <TextBlock Text="{Binding VG21Data.SetPoint,StringFormat={}{0:f3}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
  1224. </Border>
  1225. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="3" Grid.Column="1">
  1226. <TextBlock Text="{Binding VG22Data.FeedBack,StringFormat={}{0:f3}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  1227. </Border>
  1228. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="3" Grid.Column="2">
  1229. <TextBlock Text="{Binding VG22Data.SetPoint,StringFormat={}{0:f3}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
  1230. </Border>
  1231. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="4" Grid.Column="1">
  1232. <TextBlock Text="{Binding MFC1Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  1233. </Border>
  1234. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="4" Grid.Column="2">
  1235. <TextBlock Text="{Binding MFC1Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
  1236. </Border>
  1237. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="5" Grid.Column="1">
  1238. <TextBlock Text="{Binding MFC2Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  1239. </Border>
  1240. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="5" Grid.Column="2">
  1241. <TextBlock Text="{Binding MFC2Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
  1242. </Border>
  1243. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="6" Grid.Column="1">
  1244. <TextBlock Text="{Binding MFC3Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  1245. </Border>
  1246. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="6" Grid.Column="2">
  1247. <TextBlock Text="{Binding MFC3Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
  1248. </Border>
  1249. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="7" Grid.Column="1">
  1250. <TextBlock Text="{Binding MFC4Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  1251. </Border>
  1252. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="7" Grid.Column="2">
  1253. <TextBlock Text="{Binding MFC4Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
  1254. </Border>
  1255. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="8" Grid.Column="1">
  1256. <TextBlock Text="{Binding MFC5Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  1257. </Border>
  1258. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="8" Grid.Column="2">
  1259. <TextBlock Text="{Binding MFC5Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
  1260. </Border>
  1261. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="9" Grid.Column="1">
  1262. <TextBlock Text="{Binding MFC6Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  1263. </Border>
  1264. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="9" Grid.Column="2">
  1265. <TextBlock Text="{Binding MFC6Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
  1266. </Border>
  1267. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="10" Grid.Column="1">
  1268. <TextBlock Text="{Binding MFC7Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  1269. </Border>
  1270. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="10" Grid.Column="2">
  1271. <TextBlock Text="{Binding MFC7Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
  1272. </Border>
  1273. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="11" Grid.Column="1">
  1274. <TextBlock Text="{Binding MFC8Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  1275. </Border>
  1276. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="11" Grid.Column="2">
  1277. <TextBlock Text="{Binding MFC8Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
  1278. </Border>
  1279. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="12" Grid.Column="1">
  1280. <TextBlock Text="{Binding MFC9Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  1281. </Border>
  1282. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="12" Grid.Column="2">
  1283. <TextBlock Text="{Binding MFC9Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
  1284. </Border>
  1285. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="13" Grid.Column="1">
  1286. <TextBlock Text="{Binding MFC10Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  1287. </Border>
  1288. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="13" Grid.Column="2">
  1289. <TextBlock Text="{Binding MFC10Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
  1290. </Border>
  1291. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="14" Grid.Column="1">
  1292. <TextBlock Text="{Binding MFC11Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  1293. </Border>
  1294. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="14" Grid.Column="2">
  1295. <TextBlock Text="{Binding MFC11Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
  1296. </Border>
  1297. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="15" Grid.Column="1">
  1298. <TextBlock Text="{Binding MFC12Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  1299. </Border>
  1300. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="15" Grid.Column="2">
  1301. <TextBlock Text="{Binding MFC12Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
  1302. </Border>
  1303. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="16" Grid.Column="1">
  1304. <TextBlock Text="{Binding MFC13Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  1305. </Border>
  1306. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="16" Grid.Column="2">
  1307. <TextBlock Text="{Binding MFC13Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
  1308. </Border>
  1309. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="17" Grid.Column="1">
  1310. <TextBlock Text="{Binding MFC14Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  1311. </Border>
  1312. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="17" Grid.Column="2">
  1313. <TextBlock Text="{Binding MFC14Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
  1314. </Border>
  1315. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="18" Grid.Column="1">
  1316. <TextBlock Text="{Binding MFC15Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  1317. </Border>
  1318. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="18" Grid.Column="2">
  1319. <TextBlock Text="{Binding MFC15Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
  1320. </Border>
  1321. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="19" Grid.Column="1">
  1322. <TextBlock Text="{Binding MFC16Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  1323. </Border>
  1324. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="19" Grid.Column="2">
  1325. <TextBlock Text="{Binding MFC16Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
  1326. </Border>
  1327. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="20" Grid.Column="1">
  1328. <TextBlock Text="{Binding MFC51Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  1329. </Border>
  1330. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="20" Grid.Column="2">
  1331. <TextBlock Text="{Binding MFC51Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
  1332. </Border>
  1333. <Label Content="{Binding DefaultUnit}" Grid.Row="2" Grid.Column="3"/>
  1334. <Label Content="{Binding DefaultUnit}" Grid.Row="3" Grid.Column="3"/>
  1335. <Label Content="{Binding MFC1Data.Unit}" Grid.Row="4" Grid.Column="3"/>
  1336. <Label Content="{Binding MFC2Data.Unit}" Grid.Row="5" Grid.Column="3"/>
  1337. <Label Content="{Binding MFC3Data.Unit}" Grid.Row="6" Grid.Column="3"/>
  1338. <Label Content="{Binding MFC4Data.Unit}" Grid.Row="7" Grid.Column="3"/>
  1339. <Label Content="{Binding MFC5Data.Unit}" Grid.Row="8" Grid.Column="3"/>
  1340. <Label Content="{Binding MFC6Data.Unit}" Grid.Row="9" Grid.Column="3"/>
  1341. <Label Content="{Binding MFC7Data.Unit}" Grid.Row="10" Grid.Column="3"/>
  1342. <Label Content="{Binding MFC8Data.Unit}" Grid.Row="11" Grid.Column="3"/>
  1343. <Label Content="{Binding MFC9Data.Unit}" Grid.Row="12" Grid.Column="3"/>
  1344. <Label Content="{Binding MFC10Data.Unit}" Grid.Row="13" Grid.Column="3"/>
  1345. <Label Content="{Binding MFC11Data.Unit}" Grid.Row="14" Grid.Column="3"/>
  1346. <Label Content="{Binding MFC12Data.Unit}" Grid.Row="15" Grid.Column="3"/>
  1347. <Label Content="{Binding MFC13Data.Unit}" Grid.Row="16" Grid.Column="3"/>
  1348. <Label Content="{Binding MFC14Data.Unit}" Grid.Row="17" Grid.Column="3"/>
  1349. <Label Content="{Binding MFC15Data.Unit}" Grid.Row="18" Grid.Column="3"/>
  1350. <Label Content="{Binding MFC16Data.Unit}" Grid.Row="19" Grid.Column="3"/>
  1351. <Label Content="{Binding MFC51Data.Unit}" Grid.Row="20" Grid.Column="3"/>
  1352. <Grid.Resources>
  1353. <Style TargetType="Label">
  1354. <Setter Property="HorizontalContentAlignment" Value="Left"/>
  1355. <Setter Property="VerticalContentAlignment" Value="Center"/>
  1356. </Style>
  1357. </Grid.Resources>
  1358. </Grid>
  1359. </Canvas>
  1360. </ContentControl>
  1361. <i:Interaction.Triggers>
  1362. <i:EventTrigger EventName="Click">
  1363. <cal:ActionMessage MethodName="SwitchPage">
  1364. <cal:Parameter Value="Gas"/>
  1365. </cal:ActionMessage>
  1366. </i:EventTrigger>
  1367. </i:Interaction.Triggers>
  1368. </Button>
  1369. <Button Visibility="{Binding IsELKVisibility}" Grid.Row="0" Grid.Column="0" Margin="0,5,5,-11" Style="{StaticResource MainArea_Button}" VerticalContentAlignment="Stretch" HorizontalContentAlignment="Stretch" >
  1370. <ContentControl >
  1371. <Canvas >
  1372. <TextBlock Text="Gas" HorizontalAlignment="Center" Style="{StaticResource TextBlock_Title}" VerticalAlignment="Bottom" FontSize="16" Margin="0" Canvas.Left="60"/>
  1373. <Image Source="/FurnaceUI;component/Resources/images/icons/Gas44.png" Width="30" Canvas.Left="1"/>
  1374. <Grid x:Name="PM1_Info4" Grid.Column="1" Visibility="{Binding IsPMAVisibility}" Height="480" Canvas.Top="15">
  1375. <Grid.RowDefinitions>
  1376. <RowDefinition Height="0"/>
  1377. <RowDefinition Height="20"/>
  1378. <RowDefinition Height="23"/>
  1379. <RowDefinition Height="23"/>
  1380. <RowDefinition Height="23"/>
  1381. <RowDefinition Height="23"/>
  1382. <RowDefinition Height="23"/>
  1383. <RowDefinition Height="23"/>
  1384. <RowDefinition Height="23"/>
  1385. <RowDefinition Height="23"/>
  1386. <RowDefinition Height="23"/>
  1387. <RowDefinition Height="23"/>
  1388. <RowDefinition Height="23"/>
  1389. <RowDefinition Height="23"/>
  1390. <RowDefinition Height="23"/>
  1391. <RowDefinition Height="23"/>
  1392. <RowDefinition Height="23"/>
  1393. <RowDefinition Height="23"/>
  1394. <RowDefinition Height="23"/>
  1395. <RowDefinition Height="23"/>
  1396. <RowDefinition Height="23"/>
  1397. <RowDefinition Height="23"/>
  1398. </Grid.RowDefinitions>
  1399. <Grid.ColumnDefinitions>
  1400. <ColumnDefinition Width="100"/>
  1401. <ColumnDefinition Width="60"/>
  1402. <ColumnDefinition Width="60"/>
  1403. <ColumnDefinition Width="60"/>
  1404. </Grid.ColumnDefinitions>
  1405. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Grid.Row="1" Grid.Column="0">
  1406. </Border>
  1407. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="2" Grid.Column="0" >
  1408. <Label Content="{Binding VG21Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
  1409. </Border>
  1410. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="3" Grid.Column="0" >
  1411. <Label Content="{Binding VG22Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
  1412. </Border>
  1413. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="4" Grid.Column="0" >
  1414. <Label Content="{Binding MFC1Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
  1415. </Border>
  1416. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="5" Grid.Column="0" >
  1417. <Label Content="{Binding MFC2Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
  1418. </Border>
  1419. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="6" Grid.Column="0" >
  1420. <Label Content="{Binding MFC3Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
  1421. </Border>
  1422. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="7" Grid.Column="0" >
  1423. <Label Content="{Binding MFC4Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
  1424. </Border>
  1425. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="8" Grid.Column="0" >
  1426. <Label Content="{Binding MFC5Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
  1427. </Border>
  1428. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="9" Grid.Column="0" >
  1429. <Label Content="{Binding MFC6Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
  1430. </Border>
  1431. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="10" Grid.Column="0" >
  1432. <Label Content="{Binding MFC7Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
  1433. </Border>
  1434. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="11" Grid.Column="0" >
  1435. <Label Content="{Binding MFC8Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
  1436. </Border>
  1437. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="12" Grid.Column="0" >
  1438. <Label Content="{Binding MFC9Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
  1439. </Border>
  1440. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="13" Grid.Column="0" >
  1441. <Label Content="{Binding MFC10Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
  1442. </Border>
  1443. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="14" Grid.Column="0" >
  1444. <Label Content="{Binding MFC11Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
  1445. </Border>
  1446. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="15" Grid.Column="0" >
  1447. <Label Content="{Binding MFC12Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
  1448. </Border>
  1449. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="16" Grid.Column="0" >
  1450. <Label Content="{Binding MFC13Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
  1451. </Border>
  1452. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="17" Grid.Column="0" >
  1453. <Label Content="{Binding MFC16Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
  1454. </Border>
  1455. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="18" Grid.Column="0" >
  1456. <Label Content="{Binding MFC17Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
  1457. </Border>
  1458. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="19" Grid.Column="0" >
  1459. <Label Content="{Binding MFC31Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
  1460. </Border>
  1461. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="20" Grid.Column="0" >
  1462. <Label Content="{Binding MFC32Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
  1463. </Border>
  1464. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="21" Grid.Column="0" >
  1465. <Label Content="{Binding MFC51Data.DisplayName}" Foreground="{DynamicResource FG_Black}" FontSize="13" HorizontalAlignment="Center" VerticalAlignment="Center" />
  1466. </Border>
  1467. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,1,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="1" Grid.Column="1">
  1468. <TextBlock Text="Actual" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  1469. </Border>
  1470. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,1,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="1" Grid.Column="2">
  1471. <TextBlock Text="Set" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  1472. </Border>
  1473. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="2" Grid.Column="1">
  1474. <TextBlock Text="{Binding VG21Data.FeedBack,StringFormat={}{0:f3}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  1475. </Border>
  1476. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="2" Grid.Column="2">
  1477. <TextBlock Text="{Binding VG21Data.SetPoint,StringFormat={}{0:f3}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
  1478. </Border>
  1479. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="3" Grid.Column="1">
  1480. <TextBlock Text="{Binding VG22Data.FeedBack,StringFormat={}{0:f3}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  1481. </Border>
  1482. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="3" Grid.Column="2">
  1483. <TextBlock Text="{Binding VG22Data.SetPoint,StringFormat={}{0:f3}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
  1484. </Border>
  1485. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="4" Grid.Column="1">
  1486. <TextBlock Text="{Binding MFC1Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  1487. </Border>
  1488. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="4" Grid.Column="2">
  1489. <TextBlock Text="{Binding MFC1Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
  1490. </Border>
  1491. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="5" Grid.Column="1">
  1492. <TextBlock Text="{Binding MFC2Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  1493. </Border>
  1494. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="5" Grid.Column="2">
  1495. <TextBlock Text="{Binding MFC2Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
  1496. </Border>
  1497. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="6" Grid.Column="1">
  1498. <TextBlock Text="{Binding MFC3Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  1499. </Border>
  1500. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="6" Grid.Column="2">
  1501. <TextBlock Text="{Binding MFC3Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
  1502. </Border>
  1503. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="7" Grid.Column="1">
  1504. <TextBlock Text="{Binding MFC4Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  1505. </Border>
  1506. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="7" Grid.Column="2">
  1507. <TextBlock Text="{Binding MFC4Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
  1508. </Border>
  1509. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="8" Grid.Column="1">
  1510. <TextBlock Text="{Binding MFC5Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  1511. </Border>
  1512. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="8" Grid.Column="2">
  1513. <TextBlock Text="{Binding MFC5Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
  1514. </Border>
  1515. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="9" Grid.Column="1">
  1516. <TextBlock Text="{Binding MFC6Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  1517. </Border>
  1518. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="9" Grid.Column="2">
  1519. <TextBlock Text="{Binding MFC6Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
  1520. </Border>
  1521. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="10" Grid.Column="1">
  1522. <TextBlock Text="{Binding MFC7Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  1523. </Border>
  1524. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="10" Grid.Column="2">
  1525. <TextBlock Text="{Binding MFC7Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
  1526. </Border>
  1527. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="11" Grid.Column="1">
  1528. <TextBlock Text="{Binding MFC8Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  1529. </Border>
  1530. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="11" Grid.Column="2">
  1531. <TextBlock Text="{Binding MFC8Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
  1532. </Border>
  1533. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="12" Grid.Column="1">
  1534. <TextBlock Text="{Binding MFC9Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  1535. </Border>
  1536. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="12" Grid.Column="2">
  1537. <TextBlock Text="{Binding MFC9Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
  1538. </Border>
  1539. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="13" Grid.Column="1">
  1540. <TextBlock Text="{Binding MFC10Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  1541. </Border>
  1542. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="13" Grid.Column="2">
  1543. <TextBlock Text="{Binding MFC10Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
  1544. </Border>
  1545. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="14" Grid.Column="1">
  1546. <TextBlock Text="{Binding MFC11Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  1547. </Border>
  1548. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="14" Grid.Column="2">
  1549. <TextBlock Text="{Binding MFC11Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
  1550. </Border>
  1551. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="15" Grid.Column="1">
  1552. <TextBlock Text="{Binding MFC12Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  1553. </Border>
  1554. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="15" Grid.Column="2">
  1555. <TextBlock Text="{Binding MFC12Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
  1556. </Border>
  1557. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="16" Grid.Column="1">
  1558. <TextBlock Text="{Binding MFC13Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  1559. </Border>
  1560. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="16" Grid.Column="2">
  1561. <TextBlock Text="{Binding MFC13Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
  1562. </Border>
  1563. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="17" Grid.Column="1">
  1564. <TextBlock Text="{Binding MFC16Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  1565. </Border>
  1566. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="17" Grid.Column="2">
  1567. <TextBlock Text="{Binding MFC16Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
  1568. </Border>
  1569. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="18" Grid.Column="1">
  1570. <TextBlock Text="{Binding MFC17Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  1571. </Border>
  1572. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="18" Grid.Column="2">
  1573. <TextBlock Text="{Binding MFC17Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
  1574. </Border>
  1575. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="19" Grid.Column="1">
  1576. <TextBlock Text="{Binding MFC31Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  1577. </Border>
  1578. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="19" Grid.Column="2">
  1579. <TextBlock Text="{Binding MFC31Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
  1580. </Border>
  1581. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="20" Grid.Column="1">
  1582. <TextBlock Text="{Binding MFC32Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  1583. </Border>
  1584. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="20" Grid.Column="2">
  1585. <TextBlock Text="{Binding MFC32Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
  1586. </Border>
  1587. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="21" Grid.Column="1">
  1588. <TextBlock Text="{Binding MFC51Data.FeedBack,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  1589. </Border>
  1590. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="21" Grid.Column="2">
  1591. <TextBlock Text="{Binding MFC51Data.SetPoint,StringFormat={}{0:f1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" />
  1592. </Border>
  1593. <Label Content="{Binding DefaultUnit}" Grid.Row="2" Grid.Column="3"/>
  1594. <Label Content="{Binding DefaultUnit}" Grid.Row="3" Grid.Column="3"/>
  1595. <Label Content="{Binding MFC1Data.Unit}" Grid.Row="4" Grid.Column="3"/>
  1596. <Label Content="{Binding MFC2Data.Unit}" Grid.Row="5" Grid.Column="3"/>
  1597. <Label Content="{Binding MFC3Data.Unit}" Grid.Row="6" Grid.Column="3"/>
  1598. <Label Content="{Binding MFC4Data.Unit}" Grid.Row="7" Grid.Column="3"/>
  1599. <Label Content="{Binding MFC5Data.Unit}" Grid.Row="8" Grid.Column="3"/>
  1600. <Label Content="{Binding MFC6Data.Unit}" Grid.Row="9" Grid.Column="3"/>
  1601. <Label Content="{Binding MFC7Data.Unit}" Grid.Row="10" Grid.Column="3"/>
  1602. <Label Content="{Binding MFC8Data.Unit}" Grid.Row="11" Grid.Column="3"/>
  1603. <Label Content="{Binding MFC9Data.Unit}" Grid.Row="12" Grid.Column="3"/>
  1604. <Label Content="{Binding MFC10Data.Unit}" Grid.Row="13" Grid.Column="3"/>
  1605. <Label Content="{Binding MFC11Data.Unit}" Grid.Row="14" Grid.Column="3"/>
  1606. <Label Content="{Binding MFC12Data.Unit}" Grid.Row="15" Grid.Column="3"/>
  1607. <Label Content="{Binding MFC13Data.Unit}" Grid.Row="16" Grid.Column="3"/>
  1608. <Label Content="{Binding MFC16Data.Unit}" Grid.Row="17" Grid.Column="3"/>
  1609. <Label Content="{Binding MFC17Data.Unit}" Grid.Row="18" Grid.Column="3"/>
  1610. <Label Content="{Binding MFC31Data.Unit}" Grid.Row="19" Grid.Column="3"/>
  1611. <Label Content="{Binding MFC32Data.Unit}" Grid.Row="20" Grid.Column="3"/>
  1612. <Label Content="{Binding MFC51Data.Unit}" Grid.Row="21" Grid.Column="3"/>
  1613. <Grid.Resources>
  1614. <Style TargetType="Label">
  1615. <Setter Property="HorizontalContentAlignment" Value="Left"/>
  1616. <Setter Property="VerticalContentAlignment" Value="Center"/>
  1617. </Style>
  1618. </Grid.Resources>
  1619. </Grid>
  1620. </Canvas>
  1621. </ContentControl>
  1622. <i:Interaction.Triggers>
  1623. <i:EventTrigger EventName="Click">
  1624. <cal:ActionMessage MethodName="SwitchPage">
  1625. <cal:Parameter Value="Gas"/>
  1626. </cal:ActionMessage>
  1627. </i:EventTrigger>
  1628. </i:Interaction.Triggers>
  1629. </Button>
  1630. <Button Grid.Row="0" Grid.Column="1" Margin="0,5,0,-11" Style="{StaticResource MainArea_Button}" VerticalContentAlignment="Stretch" HorizontalContentAlignment="Stretch" >
  1631. <ContentControl>
  1632. <Canvas>
  1633. <TextBlock Text="N2 Purge" Canvas.Left="60" HorizontalAlignment="Center" Style="{StaticResource TextBlock_Title}" VerticalAlignment="Bottom" FontSize="16"/>
  1634. <Image Source="/FurnaceUI;component/Resources/images/icons/Valve44.png" Width="40" Canvas.Left="0"/>
  1635. <Grid Canvas.Top="45" Height="420">
  1636. <Grid.RowDefinitions>
  1637. <RowDefinition/>
  1638. <RowDefinition/>
  1639. <RowDefinition/>
  1640. <RowDefinition/>
  1641. <RowDefinition/>
  1642. </Grid.RowDefinitions>
  1643. <Grid Grid.Row="0" Width="255">
  1644. <Grid.RowDefinitions>
  1645. <RowDefinition/>
  1646. <RowDefinition/>
  1647. </Grid.RowDefinitions>
  1648. <TextBlock Style="{StaticResource TextBlock_Grid}" Grid.ColumnSpan="2" Text="N2Purge Status"/>
  1649. <Border Grid.Row="1" Background="#DAE5F1" BorderBrush="Gray" BorderThickness="1,1,1,1" Margin="0,0,-5,0" >
  1650. <TextBlock Background="#DAE5F1" HorizontalAlignment="Center" VerticalAlignment="Center" IsEnabled="False" ></TextBlock>
  1651. </Border>
  1652. </Grid>
  1653. <Grid Grid.Row="1">
  1654. <Grid.ColumnDefinitions>
  1655. <ColumnDefinition Width="24*"/>
  1656. <ColumnDefinition Width="61*"/>
  1657. </Grid.ColumnDefinitions>
  1658. <Grid.RowDefinitions>
  1659. <RowDefinition/>
  1660. <RowDefinition/>
  1661. </Grid.RowDefinitions>
  1662. <TextBlock Style="{StaticResource TextBlock_Grid}" Text="O2 Density CtrlStatus" Grid.ColumnSpan="2" Margin="0,0,2,0"/>
  1663. <Border Grid.Row="1" Grid.ColumnSpan="2" Background="#DAE5F1" BorderBrush="Gray" BorderThickness="1,1,1,1" >
  1664. <TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" Background="#DAE5F1" IsEnabled="False" />
  1665. </Border>
  1666. </Grid>
  1667. <Grid Grid.Row="2" Grid.RowSpan="2">
  1668. <Grid.RowDefinitions>
  1669. <RowDefinition/>
  1670. <RowDefinition/>
  1671. <RowDefinition/>
  1672. <RowDefinition/>
  1673. </Grid.RowDefinitions>
  1674. <TextBlock Style="{StaticResource TextBlock_Grid}" Text="O2 Density(ppm)"/>
  1675. <Border Grid.Row="1" Grid.ColumnSpan="2" Background="#DAE5F1" BorderBrush="Gray" BorderThickness="1,1,1,1" >
  1676. <TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" Background="#DAE5F1" IsEnabled="False" Margin="4"/>
  1677. </Border>
  1678. <StackPanel Margin="0,2,0,2" Grid.Row="2" Orientation="Horizontal" HorizontalAlignment="Center">
  1679. <Border Background="#DAE5F1" BorderBrush="Gray" BorderThickness="1,1,1,1" Width="133" >
  1680. <TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" IsEnabled="False" Margin="2" Width="100"/>
  1681. </Border>
  1682. <TextBlock Text="/" Margin="10 10 10 0"></TextBlock>
  1683. <Border Background="#DAE5F1" BorderBrush="Gray" BorderThickness="1,1,1,1" >
  1684. <TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" Margin="2" IsEnabled="False" Width="100"/>
  1685. </Border>
  1686. </StackPanel>
  1687. <StackPanel Grid.Row="4" Orientation="Horizontal" HorizontalAlignment="Center">
  1688. <Border Background="#DAE5F1" BorderBrush="Gray" BorderThickness="1,1,0,1" >
  1689. <TextBlock IsEnabled="False" Width="83"/>
  1690. </Border>
  1691. <Border Background="#DAE5F1" BorderBrush="Gray" BorderThickness="1,1,0,1" >
  1692. <TextBlock IsEnabled="False" Width="50" Margin="4 0 4 0"/>
  1693. </Border>
  1694. <Border Background="#DAE5F1" BorderBrush="Gray" BorderThickness="1,1,0,1" >
  1695. <TextBlock IsEnabled="False" Width="50" Margin="4 0 4 0"/>
  1696. </Border>
  1697. <Border Background="#DAE5F1" BorderBrush="Gray" BorderThickness="1,1,1,1" >
  1698. <TextBlock IsEnabled="False" Width="61"/>
  1699. </Border>
  1700. </StackPanel>
  1701. </Grid>
  1702. <Grid Grid.Row="4" >
  1703. <Grid.RowDefinitions>
  1704. <RowDefinition/>
  1705. <RowDefinition/>
  1706. </Grid.RowDefinitions>
  1707. <TextBlock Style="{StaticResource TextBlock_Grid}" Text="TransferRoom N2Tota(L)"/>
  1708. <StackPanel Grid.Row="1" Orientation="Horizontal" HorizontalAlignment="Center" Width="265">
  1709. <Border Background="#DAE5F1" BorderBrush="Gray" BorderThickness="1,1,1,1" >
  1710. <TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" IsEnabled="False" Width="127"/>
  1711. </Border>
  1712. <TextBlock Text="/" Margin="10 10 10 0"></TextBlock>
  1713. <Border Background="#DAE5F1" BorderBrush="Gray" BorderThickness="1,1,1,1" >
  1714. <TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" IsEnabled="False" Width="109"/>
  1715. </Border>
  1716. </StackPanel>
  1717. </Grid>
  1718. </Grid>
  1719. </Canvas>
  1720. </ContentControl>
  1721. <i:Interaction.Triggers>
  1722. <i:EventTrigger EventName="Click">
  1723. <cal:ActionMessage MethodName="SwitchPage">
  1724. <cal:Parameter Value="N2Purge"/>
  1725. </cal:ActionMessage>
  1726. </i:EventTrigger>
  1727. </i:Interaction.Triggers>
  1728. </Button>
  1729. </Grid>
  1730. </Grid>
  1731. </UserControl>