StatusView.xaml 241 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194
  1. <UserControl
  2. x:Class="FurnaceUI.Views.Operations.StatusView"
  3. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5. xmlns:cal="http://www.caliburn.org"
  6. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  7. xmlns:deviceControl="clr-namespace:Aitex.Core.UI.DeviceControl;assembly=MECF.Framework.UI.Core"
  8. xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity"
  9. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  10. xmlns:parts="clr-namespace:FurnaceUI.Controls.Parts"
  11. xmlns:system="clr-namespace:System;assembly=mscorlib"
  12. xmlns:system1="http://schemas.microsoft.com/netfx/2009/xaml/presentation"
  13. Margin="0,-8,0,4"
  14. d:DesignHeight="760"
  15. d:DesignWidth="1280"
  16. FontFamily="Segoe"
  17. mc:Ignorable="d">
  18. <UserControl.Resources>
  19. <system:Double x:Key="cassetteWidth">40</system:Double>
  20. <system1:Thickness x:Key="thickness">0,2,2,0</system1:Thickness>
  21. </UserControl.Resources>
  22. <Grid Margin="0,5,0,0" Background="White">
  23. <Grid.RowDefinitions>
  24. <RowDefinition Height="0.4*"/>
  25. <RowDefinition Height="0.6*"/>
  26. </Grid.RowDefinitions>
  27. <Grid.ColumnDefinitions>
  28. <ColumnDefinition Width="0.5*"/>
  29. <ColumnDefinition Width="0.4*"/>
  30. </Grid.ColumnDefinitions>
  31. <Grid Grid.Row="0" Grid.Column="0">
  32. <Grid.ColumnDefinitions>
  33. <ColumnDefinition Width="0.4*"/>
  34. <ColumnDefinition Width="0.5*"/>
  35. </Grid.ColumnDefinitions>
  36. <Grid Grid.Column="0">
  37. <Button
  38. Grid.Row="0"
  39. Grid.Column="0"
  40. Margin="0,5,5,0"
  41. Padding="0"
  42. HorizontalContentAlignment="Stretch"
  43. VerticalContentAlignment="Stretch"
  44. Style="{StaticResource MainArea_Button}">
  45. <ContentControl>
  46. <Canvas>
  47. <TextBlock
  48. Canvas.Left="200"
  49. HorizontalAlignment="Center"
  50. VerticalAlignment="Top"
  51. FontSize="16"
  52. Style="{StaticResource TextBlock_Title}"
  53. Text="CJob "/>
  54. <TextBlock
  55. Canvas.Left="60"
  56. HorizontalAlignment="Center"
  57. VerticalAlignment="Top"
  58. FontSize="16"
  59. Style="{StaticResource TextBlock_Title}"
  60. Text="Job "/>
  61. <Image
  62. Canvas.Left="0"
  63. Canvas.Top="2"
  64. Width="40"
  65. Source="/FurnaceUI;component/Resources/images/icons/Elevator.png"/>
  66. <Border
  67. Canvas.Left="90"
  68. Canvas.Top="25"
  69. Width="177"
  70. Height="35"
  71. Margin="0"
  72. Background="#DAE5F1"
  73. BorderBrush="Gray"
  74. BorderThickness="1,1,1,1">
  75. <TextBlock
  76. HorizontalAlignment="Center"
  77. VerticalAlignment="Center"
  78. IsEnabled="False"
  79. Text="{Binding ControlJobStatus, Mode=OneWay}"/>
  80. </Border>
  81. <Border
  82. Canvas.Left="6"
  83. Canvas.Top="65"
  84. BorderBrush="Gainsboro"
  85. BorderThickness="0,0,1,1">
  86. <Border BorderBrush="Gray" BorderThickness="1,1,1,1">
  87. <DockPanel
  88. Width="265"
  89. Height="120"
  90. Margin="1,1,0,0">
  91. <Grid>
  92. <Grid.RowDefinitions>
  93. <RowDefinition/>
  94. <RowDefinition/>
  95. <RowDefinition/>
  96. </Grid.RowDefinitions>
  97. <Grid.ColumnDefinitions>
  98. <ColumnDefinition Width="0.2*"/>
  99. <ColumnDefinition Width="0.1*"/>
  100. <ColumnDefinition Width="0.7*"/>
  101. </Grid.ColumnDefinitions>
  102. <Border
  103. Grid.Row="0"
  104. Grid.Column="0"
  105. BorderBrush="Gray"
  106. BorderThickness="1">
  107. <TextBlock
  108. HorizontalAlignment="Center"
  109. VerticalAlignment="Center"
  110. FontSize="20"
  111. Style="{StaticResource TextBlock_Grid}"
  112. Text="1"/>
  113. </Border>
  114. <TextBlock
  115. Grid.Row="0"
  116. Grid.Column="1"
  117. Style="{StaticResource TextBlock_Grid_RightAlignment}"
  118. Text="ID"/>
  119. <TextBlock
  120. Grid.Row="1"
  121. Grid.ColumnSpan="2"
  122. Style="{StaticResource TextBlock_Grid_RightAlignment}"
  123. Text="Schedule End Time"/>
  124. <Border
  125. Grid.Row="0"
  126. Grid.Column="2"
  127. Margin="4"
  128. Background="#DAE5F1"
  129. BorderBrush="Gray"
  130. BorderThickness="1,1,1,1">
  131. <TextBlock
  132. HorizontalAlignment="Center"
  133. VerticalAlignment="Center"
  134. IsEnabled="False"
  135. Text="{Binding ProcessJob1ID, Mode=OneWay}"/>
  136. </Border>
  137. <Border
  138. Grid.Row="1"
  139. Grid.Column="2"
  140. Margin="4"
  141. Background="#DAE5F1"
  142. BorderBrush="Gray"
  143. BorderThickness="1,1,1,1">
  144. <TextBlock
  145. HorizontalAlignment="Center"
  146. VerticalAlignment="Center"
  147. IsEnabled="False"
  148. Text="{Binding TotolProcessJob1EndTime, Mode=OneWay}"/>
  149. </Border>
  150. <Border
  151. Grid.Row="2"
  152. Grid.ColumnSpan="3"
  153. Margin="4"
  154. Background="#DAE5F1"
  155. BorderBrush="Gray"
  156. BorderThickness="1,1,1,1">
  157. <TextBlock
  158. HorizontalAlignment="Center"
  159. VerticalAlignment="Center"
  160. IsEnabled="False"
  161. Text="{Binding ProcessJob1Status, Mode=OneWay}"/>
  162. </Border>
  163. </Grid>
  164. </DockPanel>
  165. </Border>
  166. </Border>
  167. <Border
  168. Canvas.Left="6"
  169. Canvas.Top="190"
  170. BorderBrush="Gainsboro"
  171. BorderThickness="0,0,1,1">
  172. <Border BorderBrush="Gray" BorderThickness="1,1,1,1">
  173. <DockPanel
  174. Width="265"
  175. Height="120"
  176. Margin="1,1,0,0">
  177. <Grid>
  178. <Grid.RowDefinitions>
  179. <RowDefinition/>
  180. <RowDefinition/>
  181. <RowDefinition/>
  182. </Grid.RowDefinitions>
  183. <Grid.ColumnDefinitions>
  184. <ColumnDefinition Width="0.2*"/>
  185. <ColumnDefinition Width="0.1*"/>
  186. <ColumnDefinition Width="0.7*"/>
  187. </Grid.ColumnDefinitions>
  188. <Border
  189. Grid.Row="0"
  190. Grid.Column="0"
  191. BorderBrush="Gray"
  192. BorderThickness="1">
  193. <TextBlock
  194. HorizontalAlignment="Center"
  195. VerticalAlignment="Center"
  196. FontSize="20"
  197. Style="{StaticResource TextBlock_Grid}"
  198. Text="2"/>
  199. </Border>
  200. <TextBlock
  201. Grid.Row="0"
  202. Grid.Column="1"
  203. Style="{StaticResource TextBlock_Grid_RightAlignment}"
  204. Text="ID"/>
  205. <TextBlock
  206. Grid.Row="1"
  207. Grid.ColumnSpan="2"
  208. Style="{StaticResource TextBlock_Grid_RightAlignment}"
  209. Text="Schedule End Time"/>
  210. <Border
  211. Grid.Row="0"
  212. Grid.Column="2"
  213. Margin="4"
  214. Background="#DAE5F1"
  215. BorderBrush="Gray"
  216. BorderThickness="1,1,1,1">
  217. <TextBlock
  218. HorizontalAlignment="Center"
  219. VerticalAlignment="Center"
  220. IsEnabled="False"
  221. Text="{Binding ProcessJob2ID, Mode=OneWay}"/>
  222. </Border>
  223. <Border
  224. Grid.Row="1"
  225. Grid.Column="2"
  226. Margin="4"
  227. Background="#DAE5F1"
  228. BorderBrush="Gray"
  229. BorderThickness="1,1,1,1">
  230. <TextBlock
  231. HorizontalAlignment="Center"
  232. VerticalAlignment="Center"
  233. IsEnabled="False"
  234. Text="{Binding TotolProcessJob2EndTime, Mode=OneWay}"/>
  235. </Border>
  236. <Border
  237. Grid.Row="2"
  238. Grid.ColumnSpan="3"
  239. Margin="4"
  240. Background="#DAE5F1"
  241. BorderBrush="Gray"
  242. BorderThickness="1,1,1,1">
  243. <TextBlock
  244. HorizontalAlignment="Center"
  245. VerticalAlignment="Center"
  246. IsEnabled="False"
  247. Text="{Binding ProcessJob2Status, Mode=OneWay}"/>
  248. </Border>
  249. </Grid>
  250. </DockPanel>
  251. </Border>
  252. </Border>
  253. </Canvas>
  254. </ContentControl>
  255. <i:Interaction.Triggers>
  256. <i:EventTrigger EventName="Click">
  257. <cal:ActionMessage MethodName="SwitchPage">
  258. <cal:Parameter Value="CJStatus"/>
  259. </cal:ActionMessage>
  260. </i:EventTrigger>
  261. </i:Interaction.Triggers>
  262. </Button>
  263. </Grid>
  264. <Grid Grid.Column="1">
  265. <Button
  266. Grid.Row="0"
  267. Grid.Column="0"
  268. Margin="0,5,5,0"
  269. Padding="0"
  270. HorizontalContentAlignment="Stretch"
  271. VerticalContentAlignment="Stretch"
  272. Style="{StaticResource MainArea_Button}">
  273. <ContentControl>
  274. <Grid>
  275. <Grid.RowDefinitions>
  276. <RowDefinition/>
  277. <RowDefinition Height="45"/>
  278. </Grid.RowDefinitions>
  279. <Button
  280. HorizontalContentAlignment="Stretch"
  281. VerticalContentAlignment="Stretch"
  282. Style="{StaticResource Transparent_Button}">
  283. <Canvas>
  284. <TextBlock
  285. Canvas.Left="50"
  286. HorizontalAlignment="Center"
  287. VerticalAlignment="Top"
  288. FontSize="16"
  289. Style="{StaticResource TextBlock_Title}"
  290. Text="Recipe"/>
  291. <TextBlock
  292. Canvas.Left="280"
  293. HorizontalAlignment="Center"
  294. VerticalAlignment="Top"
  295. FontSize="25"
  296. Style="{StaticResource TextBlock_Title}"
  297. Text="{Binding HoldWaitDisplay}"/>
  298. <Image
  299. Canvas.Left="-5"
  300. Canvas.Top="2"
  301. Width="40"
  302. Source="/FurnaceUI;component/Resources/images/icons/RecipeDetail44.png"/>
  303. <Grid
  304. Canvas.Left="0"
  305. Canvas.Top="40"
  306. Width="355">
  307. <Grid.RowDefinitions>
  308. <RowDefinition Height="65"/>
  309. <RowDefinition Height="65"/>
  310. <RowDefinition Height="65"/>
  311. <RowDefinition Height="38"/>
  312. </Grid.RowDefinitions>
  313. <Grid>
  314. <Grid.RowDefinitions>
  315. <RowDefinition/>
  316. <RowDefinition/>
  317. </Grid.RowDefinitions>
  318. <Grid.ColumnDefinitions>
  319. <ColumnDefinition Width="0.4*"/>
  320. <ColumnDefinition Width="0.3*"/>
  321. <ColumnDefinition Width="0.3*"/>
  322. </Grid.ColumnDefinitions>
  323. <TextBlock Style="{StaticResource TextBlock_Grid}" Text="Process Recipe"/>
  324. <TextBlock
  325. Grid.Column="1"
  326. Style="{StaticResource TextBlock_Grid}"
  327. Text="Remain Time"/>
  328. <TextBlock
  329. Grid.Column="2"
  330. Style="{StaticResource TextBlock_Grid}"
  331. Text="{Binding PM1HoldName, Mode=OneWay}"/>
  332. <Border
  333. Grid.Row="1"
  334. Background="#DAE5F1"
  335. BorderBrush="Gray"
  336. BorderThickness="1,1,1,1">
  337. <TextBox
  338. Grid.Row="1"
  339. HorizontalAlignment="Center"
  340. VerticalAlignment="Center"
  341. BorderThickness="0"
  342. Background="#DAE5F1"
  343. Style="{StaticResource TextBox_Top}"
  344. Text="{Binding PM1SelectedRecipeNameDisplay, Mode=OneWay}"
  345. ToolTip="{Binding PM1SelectedRecipeNameDisplay, Mode=OneWay}"/>
  346. </Border>
  347. <Border
  348. Grid.Row="1"
  349. Grid.Column="1"
  350. Background="#DAE5F1"
  351. BorderBrush="Gray"
  352. BorderThickness="0,1,1,1">
  353. <TextBlock
  354. HorizontalAlignment="Center"
  355. VerticalAlignment="Center"
  356. IsEnabled="False"
  357. Text="{Binding PM1RecipeTime, Mode=OneWay}"/>
  358. </Border>
  359. <Border
  360. Grid.Row="1"
  361. Grid.Column="2"
  362. Background="#DAE5F1"
  363. BorderBrush="Gray"
  364. BorderThickness="0,1,1,1">
  365. <TextBlock
  366. HorizontalAlignment="Center"
  367. VerticalAlignment="Center"
  368. IsEnabled="False"
  369. Text="{Binding PM1HoldTime, Mode=OneWay}"/>
  370. </Border>
  371. </Grid>
  372. <Grid Grid.Row="1">
  373. <Grid.RowDefinitions>
  374. <RowDefinition/>
  375. <RowDefinition/>
  376. </Grid.RowDefinitions>
  377. <Grid.ColumnDefinitions>
  378. <ColumnDefinition Width="0.4*"/>
  379. <ColumnDefinition Width="0.3*"/>
  380. <ColumnDefinition Width="0.3*"/>
  381. </Grid.ColumnDefinitions>
  382. <TextBlock Style="{StaticResource TextBlock_Grid}" Text="Step Name"/>
  383. <TextBlock
  384. Grid.Column="1"
  385. Style="{StaticResource TextBlock_Grid}"
  386. Text="Remain Time"/>
  387. <TextBlock
  388. Grid.Column="2"
  389. Style="{StaticResource TextBlock_Grid}"
  390. Text="Next Step"/>
  391. <Border
  392. Grid.Row="1"
  393. Background="#DAE5F1"
  394. BorderBrush="Gray"
  395. BorderThickness="1,1,1,1">
  396. <TextBlock
  397. HorizontalAlignment="Center"
  398. VerticalAlignment="Center"
  399. IsEnabled="False"
  400. Text="{Binding PM1StepName, Mode=OneWay}"/>
  401. </Border>
  402. <Border
  403. Grid.Row="1"
  404. Grid.Column="1"
  405. Background="#DAE5F1"
  406. BorderBrush="Gray"
  407. BorderThickness="0,1,1,1">
  408. <TextBlock
  409. HorizontalAlignment="Center"
  410. VerticalAlignment="Center"
  411. IsEnabled="False"
  412. Text="{Binding PM1StepTime, Mode=OneWay}"/>
  413. </Border>
  414. <Border
  415. Grid.Row="1"
  416. Grid.Column="2"
  417. Background="#DAE5F1"
  418. BorderBrush="Gray"
  419. BorderThickness="0,1,1,1">
  420. <TextBlock
  421. HorizontalAlignment="Center"
  422. VerticalAlignment="Center"
  423. IsEnabled="False"
  424. Text="{Binding PM1NextStepName, Mode=OneWay}"/>
  425. </Border>
  426. </Grid>
  427. <Grid Grid.Row="2">
  428. <Grid.RowDefinitions>
  429. <RowDefinition/>
  430. <RowDefinition/>
  431. </Grid.RowDefinitions>
  432. <Grid.ColumnDefinitions>
  433. <ColumnDefinition/>
  434. <ColumnDefinition/>
  435. </Grid.ColumnDefinitions>
  436. <TextBlock Style="{StaticResource TextBlock_Grid}" Text="Start Time"/>
  437. <TextBlock
  438. Grid.Column="1"
  439. Style="{StaticResource TextBlock_Grid}"
  440. Text="End Time"/>
  441. <Border
  442. Grid.Row="1"
  443. Background="#DAE5F1"
  444. BorderBrush="Gray"
  445. BorderThickness="1,1,1,1">
  446. <TextBlock
  447. HorizontalAlignment="Center"
  448. VerticalAlignment="Center"
  449. IsEnabled="False"
  450. Text="{Binding PM1BeginTime, Mode=OneWay}"/>
  451. </Border>
  452. <Border
  453. Grid.Row="1"
  454. Grid.Column="1"
  455. Background="#DAE5F1"
  456. BorderBrush="Gray"
  457. BorderThickness="0,1,1,1">
  458. <TextBlock
  459. HorizontalAlignment="Center"
  460. VerticalAlignment="Center"
  461. IsEnabled="False"
  462. Text="{Binding PM1EndTime, Mode=OneWay}"/>
  463. </Border>
  464. </Grid>
  465. <Grid Grid.Row="3" Margin="0,6,0,0">
  466. <Grid.ColumnDefinitions>
  467. <ColumnDefinition Width="50"/>
  468. <ColumnDefinition/>
  469. <ColumnDefinition Width="50"/>
  470. <ColumnDefinition/>
  471. </Grid.ColumnDefinitions>
  472. <TextBlock
  473. Grid.Column="0"
  474. Margin="5,5,0,0"
  475. Style="{StaticResource TextBlock_Grid}"
  476. Text="Loop"/>
  477. <Border
  478. Grid.Column="1"
  479. Background="#DAE5F1"
  480. BorderBrush="Gray"
  481. BorderThickness="1,1,1,1">
  482. <TextBlock
  483. x:Name="Loop"
  484. HorizontalAlignment="Center"
  485. VerticalAlignment="Center"
  486. IsEnabled="False"
  487. Text="{Binding LoopInfo, Mode=OneWay}"/>
  488. </Border>
  489. <TextBlock
  490. Grid.Column="2"
  491. Margin="10,5,0,0"
  492. Style="{StaticResource TextBlock_Grid}"
  493. Text="Sub"/>
  494. <Border
  495. Grid.Column="3"
  496. Background="#DAE5F1"
  497. BorderBrush="Gray"
  498. BorderThickness="1,1,1,1">
  499. <TextBlock
  500. x:Name="Sub"
  501. HorizontalAlignment="Center"
  502. VerticalAlignment="Center"
  503. IsEnabled="False"
  504. Text="{Binding SubInfo, Mode=OneWay}"/>
  505. </Border>
  506. </Grid>
  507. </Grid>
  508. </Canvas>
  509. <i:Interaction.Triggers>
  510. <i:EventTrigger EventName="Click">
  511. <cal:ActionMessage MethodName="SwitchPage">
  512. <cal:Parameter Value="MainRecipe"/>
  513. </cal:ActionMessage>
  514. </i:EventTrigger>
  515. </i:Interaction.Triggers>
  516. </Button>
  517. <Button
  518. Grid.Row="1"
  519. HorizontalContentAlignment="Stretch"
  520. VerticalContentAlignment="Stretch"
  521. Style="{StaticResource Transparent_Button}">
  522. <StackPanel
  523. Grid.Row="3"
  524. Height="33"
  525. Margin="0,0,0,0"
  526. Orientation="Horizontal">
  527. <Border
  528. Margin="1,0,0,0"
  529. Background="#DAE5F1"
  530. BorderBrush="Gray"
  531. BorderThickness="1,1,0,1">
  532. <TextBlock
  533. Width="69"
  534. Margin="-6,0,0,1"
  535. HorizontalAlignment="Center"
  536. VerticalAlignment="Center"
  537. FontFamily="Segoe"
  538. FontSize="16"
  539. Foreground="Black"
  540. Text="{Binding RecipeProgress}"
  541. TextAlignment="Center"
  542. TextWrapping="Wrap"/>
  543. </Border>
  544. <system1:ProgressBar
  545. Width="290"
  546. Margin="0,0,-7,0"
  547. Background="#DAE5F1"
  548. BorderBrush="Gray"
  549. BorderThickness="1,1,1,1"
  550. Value="{Binding RecipeProgressValue}"/>
  551. </StackPanel>
  552. <i:Interaction.Triggers>
  553. <i:EventTrigger EventName="Click">
  554. <cal:ActionMessage MethodName="SwitchPage">
  555. <cal:Parameter Value="PMCommand"/>
  556. </cal:ActionMessage>
  557. </i:EventTrigger>
  558. </i:Interaction.Triggers>
  559. </Button>
  560. </Grid>
  561. </ContentControl>
  562. </Button>
  563. </Grid>
  564. </Grid>
  565. <Grid
  566. Grid.Row="0"
  567. Grid.Column="1"
  568. Margin="0,0,0,0">
  569. <Grid.ColumnDefinitions>
  570. <ColumnDefinition/>
  571. <ColumnDefinition/>
  572. </Grid.ColumnDefinitions>
  573. <Button
  574. Grid.Row="0"
  575. Grid.Column="0"
  576. Margin="0,5,5,0"
  577. HorizontalContentAlignment="Stretch"
  578. VerticalContentAlignment="Stretch"
  579. Style="{StaticResource MainArea_Button}">
  580. <ContentControl>
  581. <Canvas>
  582. <TextBlock
  583. Canvas.Left="60"
  584. HorizontalAlignment="Center"
  585. VerticalAlignment="Bottom"
  586. FontSize="16"
  587. Style="{StaticResource TextBlock_Title}"
  588. Text="Temperature(℃)"/>
  589. <Image
  590. Canvas.Left="0"
  591. Width="40"
  592. Source="/FurnaceUI;component/Resources/images/icons/Temperature44.png"/>
  593. <Canvas>
  594. <Grid
  595. Canvas.Left="26"
  596. Canvas.Top="70"
  597. Width="180"
  598. VerticalAlignment="Bottom">
  599. <Grid.RowDefinitions>
  600. <RowDefinition Height="30"/>
  601. <RowDefinition Height="30"/>
  602. <RowDefinition Height="30"/>
  603. <RowDefinition Height="30"/>
  604. <RowDefinition Height="30"/>
  605. <RowDefinition Height="30"/>
  606. </Grid.RowDefinitions>
  607. <Grid.ColumnDefinitions>
  608. <ColumnDefinition Width="90"/>
  609. <ColumnDefinition Width="90"/>
  610. </Grid.ColumnDefinitions>
  611. <Border
  612. Grid.Row="0"
  613. Grid.Column="0"
  614. Padding="1"
  615. Background="{DynamicResource Table_BG_Title}"
  616. BorderBrush="{DynamicResource Table_BD}"
  617. BorderThickness="0,0,0,1">
  618. <TextBlock
  619. HorizontalAlignment="Center"
  620. VerticalAlignment="Center"
  621. FontFamily="Segoe"
  622. FontSize="16"
  623. Foreground="Black"
  624. Text=""
  625. TextWrapping="Wrap"/>
  626. </Border>
  627. <Border
  628. Grid.Row="1"
  629. Grid.Column="0"
  630. Padding="1"
  631. Background="{DynamicResource Table_BG_Content}"
  632. BorderBrush="{DynamicResource Table_BD}"
  633. BorderThickness="1,0,1,1">
  634. <TextBlock
  635. HorizontalAlignment="Center"
  636. VerticalAlignment="Center"
  637. FontFamily="Segoe"
  638. FontSize="14"
  639. Foreground="Black"
  640. Style="{StaticResource TextBlock_Grid}"
  641. Text="U"
  642. TextWrapping="Wrap"/>
  643. </Border>
  644. <Border
  645. Grid.Row="2"
  646. Grid.Column="0"
  647. Padding="1"
  648. Background="{DynamicResource Table_BG_Content}"
  649. BorderBrush="{DynamicResource Table_BD}"
  650. BorderThickness="1,0,1,1">
  651. <TextBlock
  652. HorizontalAlignment="Center"
  653. VerticalAlignment="Center"
  654. FontFamily="Segoe"
  655. FontSize="14"
  656. Foreground="Black"
  657. Style="{StaticResource TextBlock_Grid}"
  658. Text="CU"
  659. TextWrapping="Wrap"/>
  660. </Border>
  661. <Border
  662. Grid.Row="3"
  663. Grid.Column="0"
  664. Padding="1"
  665. Background="{DynamicResource Table_BG_Content}"
  666. BorderBrush="{DynamicResource Table_BD}"
  667. BorderThickness="1,0,1,1">
  668. <TextBlock
  669. HorizontalAlignment="Center"
  670. VerticalAlignment="Center"
  671. FontFamily="Segoe"
  672. FontSize="14"
  673. Foreground="Black"
  674. Style="{StaticResource TextBlock_Grid}"
  675. Text="C"
  676. TextWrapping="Wrap"/>
  677. </Border>
  678. <Border
  679. Grid.Row="4"
  680. Grid.Column="0"
  681. Padding="1"
  682. Background="{DynamicResource Table_BG_Content}"
  683. BorderBrush="{DynamicResource Table_BD}"
  684. BorderThickness="1,0,1,1">
  685. <TextBlock
  686. HorizontalAlignment="Center"
  687. VerticalAlignment="Center"
  688. FontFamily="Segoe"
  689. FontSize="14"
  690. Foreground="Black"
  691. Style="{StaticResource TextBlock_Grid}"
  692. Text="CL"
  693. TextWrapping="Wrap"/>
  694. </Border>
  695. <Border
  696. Grid.Row="5"
  697. Grid.Column="0"
  698. Padding="1"
  699. Background="{DynamicResource Table_BG_Content}"
  700. BorderBrush="{DynamicResource Table_BD}"
  701. BorderThickness="1,0,1,1">
  702. <TextBlock
  703. HorizontalAlignment="Center"
  704. VerticalAlignment="Center"
  705. FontFamily="Segoe"
  706. FontSize="14"
  707. Foreground="Black"
  708. Style="{StaticResource TextBlock_Grid}"
  709. Text="L"
  710. TextWrapping="Wrap"/>
  711. </Border>
  712. <Border
  713. Grid.Row="0"
  714. Grid.Column="1"
  715. Padding="1"
  716. Background="{DynamicResource Table_BG_Title}"
  717. BorderBrush="{DynamicResource Table_BD}"
  718. BorderThickness="0,0,0,1">
  719. <TextBlock
  720. HorizontalAlignment="Center"
  721. VerticalAlignment="Center"
  722. FontFamily="Segoe"
  723. FontSize="16"
  724. Foreground="Black"
  725. Text="Actual(℃)"
  726. TextWrapping="Wrap"/>
  727. </Border>
  728. <Border
  729. Grid.Row="1"
  730. Grid.Column="1"
  731. Padding="1"
  732. Background="{DynamicResource Table_BG_Content}"
  733. BorderBrush="{DynamicResource Table_BD}"
  734. BorderThickness="0,0,1,1">
  735. <TextBlock
  736. HorizontalAlignment="Center"
  737. VerticalAlignment="Bottom"
  738. FontFamily="Segoe"
  739. FontSize="14"
  740. Foreground="Black"
  741. Style="{StaticResource TextBlock_Grid}"
  742. Text="{Binding TopHeaterData.FeedBack, StringFormat={}{0:f1}}"
  743. TextWrapping="Wrap"/>
  744. </Border>
  745. <Border
  746. Grid.Row="2"
  747. Grid.Column="1"
  748. Padding="1"
  749. Background="{DynamicResource Table_BG_Content}"
  750. BorderBrush="{DynamicResource Table_BD}"
  751. BorderThickness="0,0,1,1">
  752. <TextBlock
  753. HorizontalAlignment="Center"
  754. VerticalAlignment="Center"
  755. FontFamily="Segoe"
  756. FontSize="14"
  757. Foreground="Black"
  758. Style="{StaticResource TextBlock_Grid}"
  759. Text="{Binding TopCenterHeaterData.FeedBack, StringFormat={}{0:f1}}"
  760. TextWrapping="Wrap"/>
  761. </Border>
  762. <Border
  763. Grid.Row="3"
  764. Grid.Column="1"
  765. Padding="1"
  766. Background="{DynamicResource Table_BG_Content}"
  767. BorderBrush="{DynamicResource Table_BD}"
  768. BorderThickness="0,0,1,1">
  769. <TextBlock
  770. HorizontalAlignment="Center"
  771. VerticalAlignment="Center"
  772. FontFamily="Segoe"
  773. FontSize="14"
  774. Foreground="Black"
  775. Style="{StaticResource TextBlock_Grid}"
  776. Text="{Binding CenterHeaterData.FeedBack, StringFormat={}{0:f1}}"
  777. TextWrapping="Wrap"/>
  778. </Border>
  779. <Border
  780. Grid.Row="4"
  781. Grid.Column="1"
  782. Padding="1"
  783. Background="{DynamicResource Table_BG_Content}"
  784. BorderBrush="{DynamicResource Table_BD}"
  785. BorderThickness="0,0,1,1">
  786. <TextBlock
  787. HorizontalAlignment="Center"
  788. VerticalAlignment="Center"
  789. FontFamily="Segoe"
  790. FontSize="14"
  791. Foreground="Black"
  792. Style="{StaticResource TextBlock_Grid}"
  793. Text="{Binding CenterBottomHeaterData.FeedBack, StringFormat={}{0:f1}}"
  794. TextWrapping="Wrap"/>
  795. </Border>
  796. <Border
  797. Grid.Row="5"
  798. Grid.Column="1"
  799. Padding="1"
  800. Background="{DynamicResource Table_BG_Content}"
  801. BorderBrush="{DynamicResource Table_BD}"
  802. BorderThickness="0,0,1,1">
  803. <TextBlock
  804. HorizontalAlignment="Center"
  805. VerticalAlignment="Center"
  806. FontFamily="Segoe"
  807. FontSize="14"
  808. Foreground="Black"
  809. Style="{StaticResource TextBlock_Grid}"
  810. Text="{Binding BottomHeaterData.FeedBack, StringFormat={}{0:f1}}"
  811. TextWrapping="Wrap"/>
  812. </Border>
  813. </Grid>
  814. </Canvas>
  815. </Canvas>
  816. </ContentControl>
  817. <i:Interaction.Triggers>
  818. <i:EventTrigger EventName="Click">
  819. <cal:ActionMessage MethodName="SwitchPage">
  820. <cal:Parameter Value="Temp"/>
  821. </cal:ActionMessage>
  822. </i:EventTrigger>
  823. </i:Interaction.Triggers>
  824. </Button>
  825. <Button
  826. Grid.Row="0"
  827. Grid.Column="1"
  828. Margin="0,5,0,0"
  829. HorizontalContentAlignment="Stretch"
  830. VerticalContentAlignment="Stretch"
  831. Style="{StaticResource MainArea_Button}">
  832. <ContentControl>
  833. <Canvas>
  834. <TextBlock
  835. Canvas.Left="60"
  836. HorizontalAlignment="Center"
  837. VerticalAlignment="Bottom"
  838. FontSize="16"
  839. Style="{StaticResource TextBlock_Title}"
  840. Text="Pressure"/>
  841. <Image
  842. Canvas.Left="0"
  843. Width="40"
  844. Source="/FurnaceUI;component/Resources/images/icons/APC44.png"/>
  845. <Grid Canvas.Top="30" Height="280">
  846. <Grid.RowDefinitions>
  847. <RowDefinition/>
  848. <RowDefinition/>
  849. <RowDefinition/>
  850. <RowDefinition/>
  851. </Grid.RowDefinitions>
  852. <Grid Grid.Row="0" Width="230">
  853. <Grid.RowDefinitions>
  854. <RowDefinition/>
  855. <RowDefinition/>
  856. </Grid.RowDefinitions>
  857. <Grid.ColumnDefinitions>
  858. <ColumnDefinition Width="0.7*"/>
  859. <ColumnDefinition Width="0.3*"/>
  860. </Grid.ColumnDefinitions>
  861. <TextBlock
  862. Grid.ColumnSpan="2"
  863. Style="{StaticResource TextBlock_Grid}"
  864. Text="Actual"/>
  865. <Border
  866. Grid.Row="1"
  867. Background="#DAE5F1"
  868. BorderBrush="Gray"
  869. BorderThickness="1,1,1,1">
  870. <TextBlock
  871. Margin="4"
  872. HorizontalAlignment="Center"
  873. VerticalAlignment="Center"
  874. IsEnabled="False"
  875. Text="{Binding APCFeedbackView, Mode=OneWay}"/>
  876. </Border>
  877. <!--<TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" Background="#DAE5F1" IsEnabled="False" Text="{Binding APCFeedbackView, StringFormat={}{0:f3}, Mode=OneWay}" Margin="4" Visibility="{Binding APCPressureView}"></TextBlock>-->
  878. <Border
  879. Grid.Row="1"
  880. Grid.Column="1"
  881. Background="#DAE5F1"
  882. BorderBrush="Gray"
  883. BorderThickness="0,1,1,1">
  884. <TextBlock
  885. Margin="4"
  886. HorizontalAlignment="Center"
  887. VerticalAlignment="Center"
  888. IsEnabled="False"
  889. Text="{Binding DefaultUnit}"/>
  890. </Border>
  891. </Grid>
  892. <Grid Grid.Row="1">
  893. <Grid.RowDefinitions>
  894. <RowDefinition/>
  895. <RowDefinition/>
  896. </Grid.RowDefinitions>
  897. <TextBlock Style="{StaticResource TextBlock_Grid}" Text="Mode"/>
  898. <Border
  899. Grid.Row="1"
  900. Background="#DAE5F1"
  901. BorderBrush="Gray"
  902. BorderThickness="1,1,1,1">
  903. <TextBlock
  904. Grid.Row="1"
  905. Margin="4"
  906. HorizontalAlignment="Center"
  907. VerticalAlignment="Center"
  908. Background="#DAE5F1"
  909. IsEnabled="False"
  910. Text="APC Control"/>
  911. </Border>
  912. </Grid>
  913. <Grid Grid.Row="2">
  914. <Grid.RowDefinitions>
  915. <RowDefinition/>
  916. <RowDefinition/>
  917. </Grid.RowDefinitions>
  918. <TextBlock Style="{StaticResource TextBlock_Grid}" Text="Command"/>
  919. <Border
  920. Grid.Row="1"
  921. Background="#DAE5F1"
  922. BorderBrush="Gray"
  923. BorderThickness="1,1,1,1">
  924. <TextBlock
  925. Margin="4"
  926. HorizontalAlignment="Center"
  927. VerticalAlignment="Center"
  928. IsEnabled="False"
  929. Text="{Binding APCData.TextModeFeedback, Mode=OneWay}"/>
  930. </Border>
  931. </Grid>
  932. <Grid Grid.Row="3" Width="230">
  933. <Grid.RowDefinitions>
  934. <RowDefinition/>
  935. <RowDefinition/>
  936. </Grid.RowDefinitions>
  937. <Grid.ColumnDefinitions>
  938. <ColumnDefinition Width="0.7*"/>
  939. <ColumnDefinition Width="0.3*"/>
  940. </Grid.ColumnDefinitions>
  941. <TextBlock
  942. Grid.ColumnSpan="2"
  943. Style="{StaticResource TextBlock_Grid}"
  944. Text="APC"/>
  945. <Border
  946. Grid.Row="1"
  947. Background="#DAE5F1"
  948. BorderBrush="Gray"
  949. BorderThickness="1,1,1,1">
  950. <TextBlock
  951. Margin="4"
  952. HorizontalAlignment="Center"
  953. VerticalAlignment="Center"
  954. IsEnabled="False"
  955. Text="{Binding APCData.PositionFeedback, StringFormat={}{0:f1}, Mode=OneWay}"/>
  956. </Border>
  957. <!--<TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" Background="#DAE5F1" IsEnabled="False" Text="{Binding APCFeedbackView, StringFormat={}{0:f3}, Mode=OneWay}" Margin="4" Visibility="{Binding APCPressureView}"></TextBlock>-->
  958. <Border
  959. Grid.Row="1"
  960. Grid.Column="1"
  961. Background="#DAE5F1"
  962. BorderBrush="Gray"
  963. BorderThickness="0,1,1,1">
  964. <TextBlock
  965. Margin="4"
  966. HorizontalAlignment="Center"
  967. VerticalAlignment="Center"
  968. Background="#DAE5F1"
  969. Text="%"/>
  970. </Border>
  971. </Grid>
  972. </Grid>
  973. </Canvas>
  974. </ContentControl>
  975. <i:Interaction.Triggers>
  976. <i:EventTrigger EventName="Click">
  977. <cal:ActionMessage MethodName="SwitchPage">
  978. <cal:Parameter Value="Pressure"/>
  979. </cal:ActionMessage>
  980. </i:EventTrigger>
  981. </i:Interaction.Triggers>
  982. </Button>
  983. </Grid>
  984. <Button
  985. Grid.Row="1"
  986. Grid.Column="0"
  987. Margin="0,5,5,-11"
  988. Padding="0"
  989. HorizontalContentAlignment="Stretch"
  990. VerticalContentAlignment="Stretch"
  991. Style="{StaticResource MainArea_Button}">
  992. <ContentControl>
  993. <Canvas Margin="-10,20,10,0">
  994. <TextBlock
  995. Canvas.Left="60"
  996. Canvas.Top="-15"
  997. HorizontalAlignment="Center"
  998. VerticalAlignment="Top"
  999. FontSize="16"
  1000. Style="{StaticResource TextBlock_Title}"
  1001. Text="Transfer"/>
  1002. <Image
  1003. Canvas.Left="8"
  1004. Canvas.Top="-20"
  1005. Width="40"
  1006. Source="/FurnaceUI;component/Resources/images/icons/Stocker44.png"/>
  1007. <Canvas Canvas.Left="30" Canvas.Top="20">
  1008. <Canvas.RenderTransform>
  1009. <TransformGroup>
  1010. <ScaleTransform ScaleX="0.55" ScaleY="0.55"/>
  1011. <ScaleTransform/>
  1012. <SkewTransform/>
  1013. <RotateTransform/>
  1014. <TranslateTransform/>
  1015. </TransformGroup>
  1016. </Canvas.RenderTransform>
  1017. <i:Interaction.Triggers>
  1018. <i:EventTrigger EventName="MouseLeftButtonDown">
  1019. <cal:ActionMessage MethodName="CanvasMouseLeftButtonDown">
  1020. <cal:Parameter Value="$Source"/>
  1021. </cal:ActionMessage>
  1022. </i:EventTrigger>
  1023. </i:Interaction.Triggers>
  1024. <Image
  1025. Canvas.Left="19"
  1026. Canvas.Top="115"
  1027. Width="81"
  1028. Source="/FurnaceUI;component/Resources/Images/Controls3/bt1.png"/>
  1029. <Image
  1030. Canvas.Left="139"
  1031. Canvas.Top="115"
  1032. Width="81"
  1033. Source="/FurnaceUI;component/Resources/Images/Controls3/bt1.png"/>
  1034. <Image
  1035. Canvas.Left="19"
  1036. Canvas.Top="395"
  1037. Width="81"
  1038. Source="/FurnaceUI;component/Resources/Images/Controls3/bt1.png"/>
  1039. <Image
  1040. Canvas.Left="139"
  1041. Canvas.Top="395"
  1042. Width="81"
  1043. Source="/FurnaceUI;component/Resources/Images/Controls3/bt1.png"/>
  1044. <!--<Image Source="/FurnaceUI;component/Resources/Images/Controls3/hg1.png" Canvas.Left="295" Canvas.Top="95"/>-->
  1045. <Image
  1046. Canvas.Left="295"
  1047. Canvas.Top="-40"
  1048. Height="770"
  1049. Source="{Binding CassetteRobotAxleStatusPath}">
  1050. <i:Interaction.Triggers>
  1051. <i:EventTrigger EventName="MouseDown">
  1052. <cal:ActionMessage MethodName="PopupPage">
  1053. <cal:Parameter Value="WaferRobot"/>
  1054. </cal:ActionMessage>
  1055. </i:EventTrigger>
  1056. </i:Interaction.Triggers>
  1057. </Image>
  1058. <!--<Image Source="/FurnaceUI;component/Resources/Images/Controls3/hg2.png" Canvas.Left="776" Canvas.Top="296"/>-->
  1059. <Image
  1060. Canvas.Left="776"
  1061. Canvas.Top="360"
  1062. Height="352"
  1063. Source="{Binding WaferRobotAxleStatusPath}">
  1064. <i:Interaction.Triggers>
  1065. <i:EventTrigger EventName="MouseLeftButtonDown">
  1066. <cal:ActionMessage MethodName="PopupPage">
  1067. <cal:Parameter Value="CassetteRobot"/>
  1068. </cal:ActionMessage>
  1069. </i:EventTrigger>
  1070. </i:Interaction.Triggers>
  1071. </Image>
  1072. <!--<Image Source="/FurnaceUI;component/Resources/Images/Controls3/qt3.png" Canvas.Left="32" Canvas.Top="50" />-->
  1073. <Image
  1074. Canvas.Left="609"
  1075. Canvas.Top="450"
  1076. Width="81"
  1077. Source="/FurnaceUI;component/Resources/Images/Controls3/bt1.png"/>
  1078. <Image
  1079. Canvas.Left="609"
  1080. Canvas.Top="600"
  1081. Width="81"
  1082. Source="/FurnaceUI;component/Resources/Images/Controls3/bt1.png"/>
  1083. <!--<Image Source="/FurnaceUI;component/Resources/Images/Controls3/listbg.png" Canvas.Left="33" Canvas.Top="352"/>
  1084. <Image Source="/FurnaceUI;component/Resources/Images/Controls3/bt2.png" Canvas.Left="33" Canvas.Top="428"/>
  1085. <Image Source="/FurnaceUI;component/Resources/Images/Controls3/bt2.png" Canvas.Left="33" Canvas.Top="506"/>
  1086. <Image Source="/FurnaceUI;component/Resources/Images/Controls3/bt2.png" Canvas.Left="33" Canvas.Top="585"/>
  1087. <Image Source="/FurnaceUI;component/Resources/Images/Controls3/bt2.png" Canvas.Left="33" Canvas.Top="672"/>-->
  1088. <TextBlock
  1089. Canvas.Left="45"
  1090. Canvas.Top="135"
  1091. FontFamily="Arial"
  1092. FontSize="13"
  1093. Foreground="Black"
  1094. Text="LP 3"/>
  1095. <TextBlock
  1096. Canvas.Left="166"
  1097. Canvas.Top="135"
  1098. FontFamily="Arial"
  1099. FontSize="13"
  1100. Foreground="Black"
  1101. Text="LP 4"/>
  1102. <TextBlock
  1103. Canvas.Left="45"
  1104. Canvas.Top="415"
  1105. FontFamily="Arial"
  1106. FontSize="13"
  1107. Foreground="Black"
  1108. Text="LP 1"/>
  1109. <TextBlock
  1110. Canvas.Left="166"
  1111. Canvas.Top="415"
  1112. FontFamily="Arial"
  1113. FontSize="13"
  1114. Foreground="Black"
  1115. Text="LP 2"/>
  1116. <TextBlock
  1117. Canvas.Left="629"
  1118. Canvas.Top="470"
  1119. FontFamily="Arial"
  1120. FontSize="13"
  1121. Foreground="Black"
  1122. Text="FIMS 2"/>
  1123. <TextBlock
  1124. Canvas.Left="629"
  1125. Canvas.Top="620"
  1126. FontFamily="Arial"
  1127. FontSize="13"
  1128. Foreground="Black"
  1129. Text="FIMS 1"/>
  1130. <TextBlock
  1131. Canvas.Left="475"
  1132. Canvas.Top="304"
  1133. FontFamily="Arial"
  1134. FontSize="13"
  1135. Foreground="Black"
  1136. Text="1"
  1137. Visibility="{Binding IsStocker1Visibility}"/>
  1138. <deviceControl:AITSensor
  1139. Canvas.Left="471"
  1140. Canvas.Top="320"
  1141. GreenColor="True"
  1142. LightOnValue="{Binding SensorStation1Presence}"
  1143. Visibility="{Binding IsStocker1Visibility}"/>
  1144. <Border
  1145. Canvas.Left="499"
  1146. Canvas.Top="274"
  1147. Width="65"
  1148. Height="65"
  1149. Background="#ccc"
  1150. BorderBrush="Black"
  1151. BorderThickness="1"
  1152. Visibility="{Binding IsStocker1Visibility}"/>
  1153. <parts:CassetteViewV2
  1154. Canvas.Left="499"
  1155. Canvas.Top="274"
  1156. Width="65"
  1157. Height="65"
  1158. CarrierData="{Binding Stocker1CarrierData}"
  1159. CarrierModule="Stocker1"
  1160. CassetteType="{Binding Stocker1CarrierType}"
  1161. Visibility="{Binding IsStocker1Visibility}"
  1162. WaferCount="{Binding Stocker1WaferCount}"/>
  1163. <TextBlock
  1164. Canvas.Left="595"
  1165. Canvas.Top="304"
  1166. FontFamily="Arial"
  1167. FontSize="13"
  1168. Foreground="Black"
  1169. Text="2"
  1170. Visibility="{Binding IsStocker2Visibility}"/>
  1171. <deviceControl:AITSensor
  1172. Canvas.Left="591"
  1173. Canvas.Top="320"
  1174. GreenColor="True"
  1175. LightOnValue="{Binding SensorStation2Presence}"
  1176. Visibility="{Binding IsStocker2Visibility}"/>
  1177. <Border
  1178. Canvas.Left="617"
  1179. Canvas.Top="274"
  1180. Width="65"
  1181. Height="65"
  1182. Background="#ccc"
  1183. BorderBrush="Black"
  1184. BorderThickness="1"
  1185. Visibility="{Binding IsStocker2Visibility}"/>
  1186. <parts:CassetteViewV2
  1187. Canvas.Left="617"
  1188. Canvas.Top="274"
  1189. Width="65"
  1190. Height="65"
  1191. CarrierData="{Binding Stocker2CarrierData}"
  1192. CarrierModule="Stocker2"
  1193. CassetteType="{Binding Stocker2CarrierType}"
  1194. Visibility="{Binding IsStocker2Visibility}"
  1195. WaferCount="{Binding Stocker2WaferCount}"/>
  1196. <TextBlock
  1197. Canvas.Left="713"
  1198. Canvas.Top="304"
  1199. FontFamily="Arial"
  1200. FontSize="13"
  1201. Foreground="Black"
  1202. Text="3"
  1203. Visibility="{Binding IsStocker3Visibility}"/>
  1204. <deviceControl:AITSensor
  1205. Canvas.Left="708"
  1206. Canvas.Top="320"
  1207. GreenColor="True"
  1208. LightOnValue="{Binding SensorStation3Presence}"
  1209. Visibility="{Binding IsStocker3Visibility}"/>
  1210. <Border
  1211. Canvas.Left="735"
  1212. Canvas.Top="274"
  1213. Width="65"
  1214. Height="65"
  1215. Background="#ccc"
  1216. BorderBrush="Black"
  1217. BorderThickness="1"
  1218. Visibility="{Binding IsStocker3Visibility}"/>
  1219. <parts:CassetteViewV2
  1220. Canvas.Left="735"
  1221. Canvas.Top="274"
  1222. Width="65"
  1223. Height="65"
  1224. CarrierData="{Binding Stocker3CarrierData}"
  1225. CarrierModule="Stocker3"
  1226. CassetteType="{Binding Stocker3CarrierType}"
  1227. Visibility="{Binding IsStocker3Visibility}"
  1228. WaferCount="{Binding Stocker3WaferCount}"/>
  1229. <TextBlock
  1230. Canvas.Left="832"
  1231. Canvas.Top="304"
  1232. FontFamily="Arial"
  1233. FontSize="13"
  1234. Foreground="Black"
  1235. Text="4"
  1236. Visibility="{Binding IsStocker4Visibility}"/>
  1237. <deviceControl:AITSensor
  1238. Canvas.Left="827"
  1239. Canvas.Top="320"
  1240. GreenColor="True"
  1241. LightOnValue="{Binding SensorStation4Presence}"
  1242. Visibility="{Binding IsStocker4Visibility}"/>
  1243. <Border
  1244. Canvas.Left="853"
  1245. Canvas.Top="274"
  1246. Width="65"
  1247. Height="65"
  1248. Background="#ccc"
  1249. BorderBrush="Black"
  1250. BorderThickness="1"
  1251. Visibility="{Binding IsStocker4Visibility}"/>
  1252. <parts:CassetteViewV2
  1253. Canvas.Left="853"
  1254. Canvas.Top="274"
  1255. Width="65"
  1256. Height="65"
  1257. CarrierData="{Binding Stocker4CarrierData}"
  1258. CarrierModule="Stocker4"
  1259. CassetteType="{Binding Stocker4CarrierType}"
  1260. Visibility="{Binding IsStocker4Visibility}"
  1261. WaferCount="{Binding Stocker4WaferCount}"/>
  1262. <TextBlock
  1263. Canvas.Left="475"
  1264. Canvas.Top="214"
  1265. FontFamily="Arial"
  1266. FontSize="13"
  1267. Foreground="Black"
  1268. Text="5"
  1269. Visibility="{Binding IsStocker5Visibility}"/>
  1270. <deviceControl:AITSensor
  1271. Canvas.Left="471"
  1272. Canvas.Top="230"
  1273. GreenColor="True"
  1274. LightOnValue="{Binding SensorStation5Presence}"
  1275. Visibility="{Binding IsStocker5Visibility}"/>
  1276. <Border
  1277. Canvas.Left="499"
  1278. Canvas.Top="184"
  1279. Width="65"
  1280. Height="65"
  1281. Background="#ccc"
  1282. BorderBrush="Black"
  1283. BorderThickness="1"
  1284. Visibility="{Binding IsStocker5Visibility}"/>
  1285. <parts:CassetteViewV2
  1286. Canvas.Left="499"
  1287. Canvas.Top="184"
  1288. Width="65"
  1289. Height="65"
  1290. CarrierData="{Binding Stocker5CarrierData}"
  1291. CarrierModule="Stocker5"
  1292. CassetteType="{Binding Stocker5CarrierData.CarrierType}"
  1293. Visibility="{Binding IsStocker5Visibility}"
  1294. WaferCount="{Binding Stocker5WaferCount}"/>
  1295. <TextBlock
  1296. Canvas.Left="595"
  1297. Canvas.Top="214"
  1298. FontFamily="Arial"
  1299. FontSize="13"
  1300. Foreground="Black"
  1301. Text="6"
  1302. Visibility="{Binding IsStocker6Visibility}"/>
  1303. <deviceControl:AITSensor
  1304. Canvas.Left="591"
  1305. Canvas.Top="230"
  1306. GreenColor="True"
  1307. LightOnValue="{Binding SensorStation6Presence}"
  1308. Visibility="{Binding IsStocker6Visibility}"/>
  1309. <Border
  1310. Canvas.Left="617"
  1311. Canvas.Top="184"
  1312. Width="65"
  1313. Height="65"
  1314. Background="#ccc"
  1315. BorderBrush="Black"
  1316. BorderThickness="1"
  1317. Visibility="{Binding IsStocker6Visibility}"/>
  1318. <parts:CassetteViewV2
  1319. Canvas.Left="617"
  1320. Canvas.Top="184"
  1321. Width="65"
  1322. Height="65"
  1323. CarrierData="{Binding Stocker6CarrierData}"
  1324. CarrierModule="Stocker6"
  1325. CassetteType="{Binding Stocker6CarrierData.CarrierType}"
  1326. Visibility="{Binding IsStocker6Visibility}"
  1327. WaferCount="{Binding Stocker6WaferCount}"/>
  1328. <TextBlock
  1329. Canvas.Left="713"
  1330. Canvas.Top="214"
  1331. FontFamily="Arial"
  1332. FontSize="13"
  1333. Foreground="Black"
  1334. Text="7"
  1335. Visibility="{Binding IsStocker7Visibility}"/>
  1336. <deviceControl:AITSensor
  1337. Canvas.Left="708"
  1338. Canvas.Top="230"
  1339. GreenColor="True"
  1340. LightOnValue="{Binding SensorStation7Presence}"
  1341. Visibility="{Binding IsStocker7Visibility}"/>
  1342. <Border
  1343. Canvas.Left="735"
  1344. Canvas.Top="184"
  1345. Width="65"
  1346. Height="65"
  1347. Background="#ccc"
  1348. BorderBrush="Black"
  1349. BorderThickness="1"
  1350. Visibility="{Binding IsStocker7Visibility}"/>
  1351. <parts:CassetteViewV2
  1352. Canvas.Left="735"
  1353. Canvas.Top="184"
  1354. Width="65"
  1355. Height="65"
  1356. CarrierData="{Binding Stocker7CarrierData}"
  1357. CarrierModule="Stocker7"
  1358. CassetteType="{Binding Stocker7CarrierData.CarrierType}"
  1359. Visibility="{Binding IsStocker7Visibility}"
  1360. WaferCount="{Binding Stocker7WaferCount}"/>
  1361. <TextBlock
  1362. Canvas.Left="832"
  1363. Canvas.Top="214"
  1364. FontFamily="Arial"
  1365. FontSize="13"
  1366. Foreground="Black"
  1367. Text="8"
  1368. Visibility="{Binding IsStocker8Visibility}"/>
  1369. <deviceControl:AITSensor
  1370. Canvas.Left="827"
  1371. Canvas.Top="230"
  1372. GreenColor="True"
  1373. LightOnValue="{Binding SensorStation8Presence}"
  1374. Visibility="{Binding IsStocker8Visibility}"/>
  1375. <Border
  1376. Canvas.Left="853"
  1377. Canvas.Top="184"
  1378. Width="65"
  1379. Height="65"
  1380. Background="#ccc"
  1381. BorderBrush="Black"
  1382. BorderThickness="1"
  1383. Visibility="{Binding IsStocker8Visibility}"/>
  1384. <parts:CassetteViewV2
  1385. Canvas.Left="853"
  1386. Canvas.Top="184"
  1387. Width="65"
  1388. Height="65"
  1389. CarrierData="{Binding Stocker8CarrierData}"
  1390. CarrierModule="Stocker8"
  1391. CassetteType="{Binding Stocker8CarrierData.CarrierType}"
  1392. Visibility="{Binding IsStocker8Visibility}"
  1393. WaferCount="{Binding Stocker8WaferCount}"/>
  1394. <TextBlock
  1395. Canvas.Left="475"
  1396. Canvas.Top="124"
  1397. FontFamily="Arial"
  1398. FontSize="13"
  1399. Foreground="Black"
  1400. Text="9"
  1401. Visibility="{Binding IsStocker9Visibility}"/>
  1402. <deviceControl:AITSensor
  1403. Canvas.Left="471"
  1404. Canvas.Top="140"
  1405. GreenColor="True"
  1406. LightOnValue="{Binding SensorStation9Presence}"
  1407. Visibility="{Binding IsStocker9Visibility}"/>
  1408. <Border
  1409. Canvas.Left="499"
  1410. Canvas.Top="94"
  1411. Width="65"
  1412. Height="65"
  1413. Background="#ccc"
  1414. BorderBrush="Black"
  1415. BorderThickness="1"
  1416. Visibility="{Binding IsStocker9Visibility}"/>
  1417. <parts:CassetteViewV2
  1418. Canvas.Left="499"
  1419. Canvas.Top="94"
  1420. Width="65"
  1421. Height="65"
  1422. CarrierData="{Binding Stocker9CarrierData}"
  1423. CarrierModule="Stocker9"
  1424. CassetteType="{Binding Stocker9CarrierData.CarrierType}"
  1425. Visibility="{Binding IsStocker9Visibility}"
  1426. WaferCount="{Binding Stocker9WaferCount}"/>
  1427. <TextBlock
  1428. Canvas.Left="588"
  1429. Canvas.Top="124"
  1430. FontFamily="Arial"
  1431. FontSize="13"
  1432. Foreground="Black"
  1433. Text="10"
  1434. Visibility="{Binding IsStocker10Visibility}"/>
  1435. <deviceControl:AITSensor
  1436. Canvas.Left="591"
  1437. Canvas.Top="140"
  1438. GreenColor="True"
  1439. LightOnValue="{Binding SensorStation10Presence}"
  1440. Visibility="{Binding IsStocker10Visibility}"/>
  1441. <Border
  1442. Canvas.Left="617"
  1443. Canvas.Top="94"
  1444. Width="65"
  1445. Height="65"
  1446. Background="#ccc"
  1447. BorderBrush="Black"
  1448. BorderThickness="1"
  1449. Visibility="{Binding IsStocker10Visibility}"/>
  1450. <parts:CassetteViewV2
  1451. Canvas.Left="617"
  1452. Canvas.Top="94"
  1453. Width="65"
  1454. Height="65"
  1455. CarrierData="{Binding Stocker10CarrierData}"
  1456. CarrierModule="Stocker10"
  1457. CassetteType="{Binding Stocker10CarrierData.CarrierType}"
  1458. Visibility="{Binding IsStocker10Visibility}"
  1459. WaferCount="{Binding Stocker10WaferCount}"/>
  1460. <TextBlock
  1461. Canvas.Left="708"
  1462. Canvas.Top="124"
  1463. FontFamily="Arial"
  1464. FontSize="13"
  1465. Foreground="Black"
  1466. Text="11"
  1467. Visibility="{Binding IsStocker11Visibility}"/>
  1468. <deviceControl:AITSensor
  1469. Canvas.Left="708"
  1470. Canvas.Top="140"
  1471. GreenColor="True"
  1472. LightOnValue="{Binding SensorStation11Presence}"
  1473. Visibility="{Binding IsStocker11Visibility}"/>
  1474. <Border
  1475. Canvas.Left="735"
  1476. Canvas.Top="94"
  1477. Width="65"
  1478. Height="65"
  1479. Background="#ccc"
  1480. BorderBrush="Black"
  1481. BorderThickness="1"
  1482. Visibility="{Binding IsStocker11Visibility}"/>
  1483. <parts:CassetteViewV2
  1484. Canvas.Left="735"
  1485. Canvas.Top="94"
  1486. Width="65"
  1487. Height="65"
  1488. CarrierData="{Binding Stocker11CarrierData}"
  1489. CarrierModule="Stocker11"
  1490. CassetteType="{Binding Stocker11CarrierData.CarrierType}"
  1491. Visibility="{Binding IsStocker11Visibility}"
  1492. WaferCount="{Binding Stocker11WaferCount}"/>
  1493. <TextBlock
  1494. Canvas.Left="827"
  1495. Canvas.Top="124"
  1496. FontFamily="Arial"
  1497. FontSize="13"
  1498. Foreground="Black"
  1499. Text="12"
  1500. Visibility="{Binding IsStocker12Visibility}"/>
  1501. <deviceControl:AITSensor
  1502. Canvas.Left="827"
  1503. Canvas.Top="140"
  1504. GreenColor="True"
  1505. LightOnValue="{Binding SensorStation12Presence}"
  1506. Visibility="{Binding IsStocker12Visibility}"/>
  1507. <Border
  1508. Canvas.Left="853"
  1509. Canvas.Top="94"
  1510. Width="65"
  1511. Height="65"
  1512. Background="#ccc"
  1513. BorderBrush="Black"
  1514. BorderThickness="1"
  1515. Visibility="{Binding IsStocker12Visibility}"/>
  1516. <parts:CassetteViewV2
  1517. Canvas.Left="853"
  1518. Canvas.Top="94"
  1519. Width="65"
  1520. Height="65"
  1521. CarrierData="{Binding Stocker12CarrierData}"
  1522. CarrierModule="Stocker12"
  1523. CassetteType="{Binding Stocker12CarrierData.CarrierType}"
  1524. Visibility="{Binding IsStocker12Visibility}"
  1525. WaferCount="{Binding Stocker12WaferCount}"/>
  1526. <TextBlock
  1527. Canvas.Left="470"
  1528. Canvas.Top="34"
  1529. FontFamily="Arial"
  1530. FontSize="13"
  1531. Foreground="Black"
  1532. Text="13"
  1533. Visibility="{Binding IsStocker13Visibility}"/>
  1534. <deviceControl:AITSensor
  1535. Canvas.Left="471"
  1536. Canvas.Top="48"
  1537. GreenColor="True"
  1538. LightOnValue="{Binding SensorStation13Presence}"
  1539. Visibility="{Binding IsStocker13Visibility}"/>
  1540. <Border
  1541. Canvas.Left="499"
  1542. Canvas.Top="4"
  1543. Width="65"
  1544. Height="65"
  1545. Background="#ccc"
  1546. BorderBrush="Black"
  1547. BorderThickness="1"
  1548. Visibility="{Binding IsStocker13Visibility}"/>
  1549. <parts:CassetteViewV2
  1550. Canvas.Left="499"
  1551. Canvas.Top="4"
  1552. Width="65"
  1553. Height="65"
  1554. CarrierData="{Binding Stocker13CarrierData}"
  1555. CarrierModule="Stocker13"
  1556. CassetteType="{Binding Stocker13CarrierData.CarrierType}"
  1557. Visibility="{Binding IsStocker13Visibility}"
  1558. WaferCount="{Binding Stocker13WaferCount}"/>
  1559. <TextBlock
  1560. Canvas.Left="588"
  1561. Canvas.Top="34"
  1562. FontFamily="Arial"
  1563. FontSize="13"
  1564. Foreground="Black"
  1565. Text="14"
  1566. Visibility="{Binding IsStocker14Visibility}"/>
  1567. <deviceControl:AITSensor
  1568. Canvas.Left="591"
  1569. Canvas.Top="48"
  1570. GreenColor="True"
  1571. LightOnValue="{Binding SensorStation14Presence}"
  1572. Visibility="{Binding IsStocker14Visibility}"/>
  1573. <Border
  1574. Canvas.Left="617"
  1575. Canvas.Top="4"
  1576. Width="65"
  1577. Height="65"
  1578. Background="#ccc"
  1579. BorderBrush="Black"
  1580. BorderThickness="1"
  1581. Visibility="{Binding IsStocker14Visibility}"/>
  1582. <parts:CassetteViewV2
  1583. Canvas.Left="617"
  1584. Canvas.Top="4"
  1585. Width="65"
  1586. Height="65"
  1587. CarrierData="{Binding Stocker14CarrierData}"
  1588. CarrierModule="Stocker14"
  1589. CassetteType="{Binding Stocker14CarrierData.CarrierType}"
  1590. Visibility="{Binding IsStocker14Visibility}"
  1591. WaferCount="{Binding Stocker14WaferCount}"/>
  1592. <TextBlock
  1593. Canvas.Left="708"
  1594. Canvas.Top="34"
  1595. FontFamily="Arial"
  1596. FontSize="13"
  1597. Foreground="Black"
  1598. Text="15"
  1599. Visibility="{Binding IsStocker15Visibility}"/>
  1600. <deviceControl:AITSensor
  1601. Canvas.Left="708"
  1602. Canvas.Top="48"
  1603. GreenColor="True"
  1604. LightOnValue="{Binding SensorStation15Presence}"
  1605. Visibility="{Binding IsStocker15Visibility}"/>
  1606. <Border
  1607. Canvas.Left="735"
  1608. Canvas.Top="4"
  1609. Width="65"
  1610. Height="65"
  1611. Background="#ccc"
  1612. BorderBrush="Black"
  1613. BorderThickness="1"
  1614. Visibility="{Binding IsStocker15Visibility}"/>
  1615. <parts:CassetteViewV2
  1616. Canvas.Left="735"
  1617. Canvas.Top="4"
  1618. Width="65"
  1619. Height="65"
  1620. CarrierData="{Binding Stocker15CarrierData}"
  1621. CarrierModule="Stocker15"
  1622. CassetteType="{Binding Stocker15CarrierData.CarrierType}"
  1623. Visibility="{Binding IsStocker15Visibility}"
  1624. WaferCount="{Binding Stocker15WaferCount}"/>
  1625. <TextBlock
  1626. Canvas.Left="827"
  1627. Canvas.Top="34"
  1628. FontFamily="Arial"
  1629. FontSize="13"
  1630. Foreground="Black"
  1631. Text="16"
  1632. Visibility="{Binding IsStocker16Visibility}"/>
  1633. <deviceControl:AITSensor
  1634. Canvas.Left="827"
  1635. Canvas.Top="48"
  1636. GreenColor="True"
  1637. LightOnValue="{Binding SensorStation16Presence}"
  1638. Visibility="{Binding IsStocker16Visibility}"/>
  1639. <Border
  1640. Canvas.Left="853"
  1641. Canvas.Top="4"
  1642. Width="65"
  1643. Height="65"
  1644. Background="#ccc"
  1645. BorderBrush="Black"
  1646. BorderThickness="1"
  1647. Visibility="{Binding IsStocker16Visibility}"/>
  1648. <parts:CassetteViewV2
  1649. Canvas.Left="853"
  1650. Canvas.Top="4"
  1651. Width="65"
  1652. Height="65"
  1653. CarrierData="{Binding Stocker16CarrierData}"
  1654. CarrierModule="Stocker16"
  1655. CassetteType="{Binding Stocker16CarrierData.CarrierType}"
  1656. Visibility="{Binding IsStocker16Visibility}"
  1657. WaferCount="{Binding Stocker16WaferCount}"/>
  1658. <TextBlock
  1659. Canvas.Left="-1"
  1660. Canvas.Top="214"
  1661. FontFamily="Arial"
  1662. FontSize="13"
  1663. Foreground="Black"
  1664. Text="17"
  1665. Visibility="{Binding IsStocker17Visibility}"/>
  1666. <deviceControl:AITSensor
  1667. Canvas.Left="1"
  1668. Canvas.Top="230"
  1669. GreenColor="True"
  1670. LightOnValue="{Binding SensorStation17Presence}"
  1671. Visibility="{Binding IsStocker17Visibility}"/>
  1672. <Border
  1673. Canvas.Left="29"
  1674. Canvas.Top="185"
  1675. Width="65"
  1676. Height="65"
  1677. Background="#ccc"
  1678. BorderBrush="Black"
  1679. BorderThickness="1"
  1680. Visibility="{Binding IsStocker17Visibility}"/>
  1681. <parts:CassetteViewV2
  1682. Canvas.Left="29"
  1683. Canvas.Top="185"
  1684. Width="65"
  1685. Height="65"
  1686. CarrierData="{Binding Stocker17CarrierData}"
  1687. CarrierModule="Stocker17"
  1688. CassetteType="{Binding Stocker17CarrierData.CarrierType}"
  1689. Visibility="{Binding IsStocker17Visibility}"
  1690. WaferCount="{Binding Stocker17WaferCount}"/>
  1691. <TextBlock
  1692. Canvas.Left="119"
  1693. Canvas.Top="214"
  1694. FontFamily="Arial"
  1695. FontSize="13"
  1696. Foreground="Black"
  1697. Text="18"
  1698. Visibility="{Binding IsStocker18Visibility}"/>
  1699. <deviceControl:AITSensor
  1700. Canvas.Left="119"
  1701. Canvas.Top="230"
  1702. GreenColor="True"
  1703. LightOnValue="{Binding SensorStation18Presence}"
  1704. Visibility="{Binding IsStocker18Visibility}"/>
  1705. <Border
  1706. Canvas.Left="147"
  1707. Canvas.Top="185"
  1708. Width="65"
  1709. Height="65"
  1710. Background="#ccc"
  1711. BorderBrush="Black"
  1712. BorderThickness="1"
  1713. Visibility="{Binding IsStocker18Visibility}"/>
  1714. <parts:CassetteViewV2
  1715. Canvas.Left="147"
  1716. Canvas.Top="185"
  1717. Width="65"
  1718. Height="65"
  1719. CarrierData="{Binding Stocker18CarrierData}"
  1720. CarrierModule="Stocker18"
  1721. CassetteType="{Binding Stocker18CarrierData.CarrierType}"
  1722. Visibility="{Binding IsStocker18Visibility}"
  1723. WaferCount="{Binding Stocker18WaferCount}"/>
  1724. <!--<Image Source="/FurnaceUI;component/Resources/Images/Controls3/bg1.png" Canvas.Left="21" Canvas.Top="388" Visibility="{Binding IsLPVisibility}"/>
  1725. <Image Source="/FurnaceUI;component/Resources/Images/Controls3/bg1.png" Canvas.Left="139" Canvas.Top="388" Visibility="{Binding IsLPVisibility}"/>-->
  1726. <!--<TextBlock Text="17" FontSize="13" FontFamily="Arial" Canvas.Left="-1" Canvas.Top="424" Visibility="{Binding IsLPVisibility}"/>
  1727. <TextBlock Text="18" FontSize="13" FontFamily="Arial" Canvas.Left="119" Canvas.Top="424" Visibility="{Binding IsLPVisibility}"/>-->
  1728. <TextBlock
  1729. Canvas.Left="119"
  1730. Canvas.Top="194"
  1731. FontFamily="Arial"
  1732. FontSize="13"
  1733. Text="{Binding StockerWaferType[17]}"/>
  1734. <TextBlock
  1735. Canvas.Left="-1"
  1736. Canvas.Top="194"
  1737. FontFamily="Arial"
  1738. FontSize="13"
  1739. Text="{Binding StockerWaferType[16]}"/>
  1740. <!--<TextBlock Text="{Binding StockerWaferType[17]}" FontSize="13" FontFamily="Arial" Canvas.Left="119" Canvas.Top="404" Visibility="{Binding IsLPVisibility}"/>
  1741. <TextBlock Text="{Binding StockerWaferType[16]}" FontSize="13" FontFamily="Arial" Canvas.Left="-1" Canvas.Top="404" Visibility="{Binding IsLPVisibility}"/>-->
  1742. <TextBlock
  1743. Canvas.Left="835"
  1744. Canvas.Top="224"
  1745. FontFamily="Arial"
  1746. FontSize="13"
  1747. Text="{Binding StockerWaferType[15]}"/>
  1748. <TextBlock
  1749. Canvas.Left="715"
  1750. Canvas.Top="224"
  1751. FontFamily="Arial"
  1752. FontSize="13"
  1753. Text="{Binding StockerWaferType[14]}"/>
  1754. <TextBlock
  1755. Canvas.Left="595"
  1756. Canvas.Top="224"
  1757. FontFamily="Arial"
  1758. FontSize="13"
  1759. Text="{Binding StockerWaferType[13]}"/>
  1760. <TextBlock
  1761. Canvas.Left="475"
  1762. Canvas.Top="224"
  1763. FontFamily="Arial"
  1764. FontSize="13"
  1765. Text="{Binding StockerWaferType[12]}"/>
  1766. <TextBlock
  1767. Canvas.Left="835"
  1768. Canvas.Top="134"
  1769. FontFamily="Arial"
  1770. FontSize="13"
  1771. Text="{Binding StockerWaferType[11]}"/>
  1772. <TextBlock
  1773. Canvas.Left="715"
  1774. Canvas.Top="134"
  1775. FontFamily="Arial"
  1776. FontSize="13"
  1777. Text="{Binding StockerWaferType[10]}"/>
  1778. <TextBlock
  1779. Canvas.Left="595"
  1780. Canvas.Top="134"
  1781. FontFamily="Arial"
  1782. FontSize="13"
  1783. Text="{Binding StockerWaferType[9]}"/>
  1784. <TextBlock
  1785. Canvas.Left="475"
  1786. Canvas.Top="134"
  1787. FontFamily="Arial"
  1788. FontSize="13"
  1789. Text="{Binding StockerWaferType[8]}"/>
  1790. <TextBlock
  1791. Canvas.Left="835"
  1792. Canvas.Top="44"
  1793. FontFamily="Arial"
  1794. FontSize="13"
  1795. Text="{Binding StockerWaferType[7]}"/>
  1796. <TextBlock
  1797. Canvas.Left="715"
  1798. Canvas.Top="44"
  1799. FontFamily="Arial"
  1800. FontSize="13"
  1801. Text="{Binding StockerWaferType[6]}"/>
  1802. <TextBlock
  1803. Canvas.Left="595"
  1804. Canvas.Top="44"
  1805. FontFamily="Arial"
  1806. FontSize="13"
  1807. Text="{Binding StockerWaferType[5]}"/>
  1808. <TextBlock
  1809. Canvas.Left="475"
  1810. Canvas.Top="44"
  1811. FontFamily="Arial"
  1812. FontSize="13"
  1813. Text="{Binding StockerWaferType[4]}"/>
  1814. <TextBlock
  1815. Canvas.Left="835"
  1816. Canvas.Top="-54"
  1817. FontFamily="Arial"
  1818. FontSize="13"
  1819. Text="{Binding StockerWaferType[3]}"/>
  1820. <TextBlock
  1821. Canvas.Left="715"
  1822. Canvas.Top="-54"
  1823. FontFamily="Arial"
  1824. FontSize="13"
  1825. Text="{Binding StockerWaferType[2]}"/>
  1826. <TextBlock
  1827. Canvas.Left="595"
  1828. Canvas.Top="-54"
  1829. FontFamily="Arial"
  1830. FontSize="13"
  1831. Text="{Binding StockerWaferType[1]}"/>
  1832. <TextBlock
  1833. Canvas.Left="475"
  1834. Canvas.Top="-54"
  1835. FontFamily="Arial"
  1836. FontSize="13"
  1837. Text="{Binding StockerWaferType[0]}"/>
  1838. <parts:CassetteViewV2
  1839. Canvas.Left="618"
  1840. Canvas.Top="386"
  1841. Width="65"
  1842. Height="65"
  1843. CarrierData="{Binding FIMS2CarrierData}"
  1844. CarrierModule="FIMS2"
  1845. CassetteType="{Binding FIMS2CarrierData.CarrierType}"
  1846. WaferCount="{Binding FIMS2WaferCount}"/>
  1847. <parts:CassetteViewV2
  1848. Canvas.Left="618"
  1849. Canvas.Top="536"
  1850. Width="65"
  1851. Height="65"
  1852. CarrierData="{Binding FIMS1CarrierData}"
  1853. CarrierModule="FIMS1"
  1854. CassetteType="{Binding FIMS1CarrierData.CarrierType}"
  1855. WaferCount="{Binding FIMS1WaferCount}"/>
  1856. <!--<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}"/>
  1857. <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}"/>-->
  1858. <parts:CassetteViewV2
  1859. Canvas.Left="27"
  1860. Canvas.Top="52"
  1861. Width="65"
  1862. Height="65"
  1863. CarrierData="{Binding LP3CarrierData}"
  1864. CarrierModule="LP3"
  1865. CassetteType="{Binding LP3CarrierData.CarrierType}"
  1866. WaferCount="{Binding LP3WaferCount}"/>
  1867. <parts:CassetteViewV2
  1868. Canvas.Left="146"
  1869. Canvas.Top="52"
  1870. Width="65"
  1871. Height="64"
  1872. CarrierData="{Binding LP4CarrierData}"
  1873. CarrierModule="LP4"
  1874. CassetteType="{Binding LP4CarrierData.CarrierType}"
  1875. WaferCount="{Binding LP4WaferCount}"/>
  1876. <parts:CassetteViewV2
  1877. Canvas.Left="27"
  1878. Canvas.Top="332"
  1879. Width="65"
  1880. Height="65"
  1881. CarrierData="{Binding LP1CarrierData}"
  1882. CarrierModule="LP1"
  1883. CassetteType="{Binding LP1CarrierData.CarrierType}"
  1884. WaferCount="{Binding LP1WaferCount}"/>
  1885. <parts:CassetteViewV2
  1886. Canvas.Left="146"
  1887. Canvas.Top="332"
  1888. Width="65"
  1889. Height="64"
  1890. CarrierData="{Binding LP2CarrierData}"
  1891. CarrierModule="LP2"
  1892. CassetteType="{Binding LP2CarrierData.CarrierType}"
  1893. WaferCount="{Binding LP2WaferCount}"/>
  1894. <!--<deviceControl:AITSensor GreenColor="True" LightOnValue="{Binding Stage17FOUPSensor1}" Canvas.Left="1" Canvas.Top="444" Visibility="{Binding IsLPVisibility}"/>
  1895. <deviceControl:AITSensor GreenColor="True" LightOnValue="{Binding Stage18FOUPSensor1}" Canvas.Left="119" Canvas.Top="444" Visibility="{Binding IsLPVisibility}"/>-->
  1896. <!--<Image Source="/FurnaceUI;component/Resources/Images/Controls2/16.png" Canvas.Left="296" Canvas.Top="320" Stretch="None" Visibility="Hidden"/>
  1897. <Image Source="/FurnaceUI;component/Resources/Images/Controls2/16.png" Canvas.Left="296" Canvas.Top="424" Stretch="None" Visibility="Hidden"/>
  1898. <Image Source="/FurnaceUI;component/Resources/Images/Controls2/16.png" Canvas.Left="440" Canvas.Top="104" Stretch="None" Visibility="Hidden"/>
  1899. <Image Source="/FurnaceUI;component/Resources/Images/Controls2/16.png" Canvas.Left="440" Canvas.Top="194" Stretch="None" Visibility="Hidden"/>
  1900. <Image Source="/FurnaceUI;component/Resources/Images/Controls2/16.png" Canvas.Left="440" Canvas.Top="282" Stretch="None" Visibility="Hidden"/>
  1901. <Image Source="/FurnaceUI;component/Resources/Images/Controls2/16.png" Canvas.Left="440" Canvas.Top="370" Stretch="None" Visibility="Hidden"/>
  1902. <Image Source="/FurnaceUI;component/Resources/Images/Controls2/16.png" Canvas.Left="440" Canvas.Top="458" Stretch="None" Visibility="Hidden"/>
  1903. <Image Source="/FurnaceUI;component/Resources/Images/Controls2/16.png" Canvas.Left="440" Canvas.Top="544" Stretch="None" Visibility="Hidden"/>-->
  1904. <parts:ATMArmRobotTwo
  1905. x:Name="ATMArmRobotTwo"
  1906. Canvas.Left="760"
  1907. Canvas.Top="616"
  1908. RobotMoveInfo="{Binding WaferRobotMoveInfo}"
  1909. StationPosition="{Binding StationPosition2}"
  1910. Wafer1="{Binding RobotWafer1}"
  1911. Wafer2="{Binding WaferRobotWafer2}"
  1912. Wafer3="{Binding WaferRobotWafer3}"
  1913. Wafer4="{Binding WaferRobotWafer4}"
  1914. Wafer5="{Binding WaferRobotWafer5}"
  1915. WaferRobotStatus="{Binding WaferRobotStatus}"/>
  1916. <parts:BoatElevatorRobot
  1917. Canvas.Left="1076"
  1918. Canvas.Top="403"
  1919. BoatStatus="{Binding BoatStatus}"
  1920. CurrentValue="{Binding BoatCurrentValue}"
  1921. MaxValue="{Binding BoatZMaxValue}"
  1922. MinValue="{Binding BoatZMinValue}"
  1923. RobotTarget="{Binding BoatPosition}"
  1924. StationPosition="{Binding StationPosition3}"
  1925. Visibility="{Binding IsShowBoatElevatorRobot, Converter={StaticResource bool2VisibilityConverter}}"/>
  1926. <Image
  1927. Canvas.Left="1020"
  1928. Canvas.Top="77"
  1929. Opacity="0.8"
  1930. Source="/FurnaceUI;component/Resources/Images/Controls3/01.png"/>
  1931. <parts:ATMArmRobot
  1932. Canvas.Left="290"
  1933. Canvas.Top="520"
  1934. CarrierData="{Binding CassetteRobotCarrierData}"
  1935. CassetteRobotStatus="{Binding CassetteRobotStatus}"
  1936. CassetteType="{Binding CassetteRobotCarrierData.CarrierType}"
  1937. RobotMoveInfo="{Binding CassetteRobotMoveInfo}"
  1938. StationPosition="{Binding StationPosition}"
  1939. WaferCount="{Binding CarrierRobotWaferCount}"/>
  1940. <!--<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">
  1941. <Grid>
  1942. <Grid.RowDefinitions>
  1943. <RowDefinition Height="36"/>
  1944. <RowDefinition Height="36"/>
  1945. </Grid.RowDefinitions>
  1946. <Grid.ColumnDefinitions>
  1947. <ColumnDefinition Width="45"/>
  1948. <ColumnDefinition Width="60"/>
  1949. <ColumnDefinition Width="45"/>
  1950. <ColumnDefinition Width="60"/>
  1951. <ColumnDefinition Width="45"/>
  1952. <ColumnDefinition Width="60"/>
  1953. </Grid.ColumnDefinitions>
  1954. <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">
  1955. <TextBlock Text="P" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="10,0,0,0"/>
  1956. </Border>
  1957. <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">
  1958. <TextBlock Text="{Binding BoatPWaferCount}" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="2,0,0,0"/>
  1959. </Border>
  1960. <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">
  1961. <TextBlock Text="M" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="10,0,0,0"/>
  1962. </Border>
  1963. <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">
  1964. <TextBlock Text="{Binding BoatMWaferCount}" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="2,0,0,0"/>
  1965. </Border>
  1966. <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">
  1967. <TextBlock Text="SD" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="10,0,0,0"/>
  1968. </Border>
  1969. <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">
  1970. <TextBlock Text="{Binding BoatSDWaferCount}" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="2,0,0,0"/>
  1971. </Border>
  1972. <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">
  1973. <TextBlock Text="ED" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="10,0,0,0"/>
  1974. </Border>
  1975. <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">
  1976. <TextBlock Text="{Binding BoatEDWaferCount}" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="2,0,0,0"/>
  1977. </Border>
  1978. <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">
  1979. <TextBlock Text="Empty" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="0,0,0,0"/>
  1980. </Border>
  1981. <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">
  1982. <TextBlock Text="{Binding BoatEmptyWaferCount}" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="2,0,0,0"/>
  1983. </Border>
  1984. <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">
  1985. <TextBlock Text="All" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="10,0,0,0"/>
  1986. </Border>
  1987. <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">
  1988. <TextBlock Text="{Binding BoatAllWaferCount}" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="2,0,0,0"/>
  1989. </Border>
  1990. </Grid>
  1991. </Border>-->
  1992. </Canvas>
  1993. </Canvas>
  1994. </ContentControl>
  1995. <i:Interaction.Triggers>
  1996. <i:EventTrigger EventName="Click">
  1997. <cal:ActionMessage MethodName="SwitchPage">
  1998. <cal:Parameter Value="TransferMain"/>
  1999. </cal:ActionMessage>
  2000. </i:EventTrigger>
  2001. </i:Interaction.Triggers>
  2002. </Button>
  2003. <Grid
  2004. Grid.Row="1"
  2005. Grid.Column="1"
  2006. Margin="0,0,0,0">
  2007. <Grid.ColumnDefinitions>
  2008. <ColumnDefinition/>
  2009. <ColumnDefinition/>
  2010. </Grid.ColumnDefinitions>
  2011. <Button
  2012. Grid.Row="0"
  2013. Grid.Column="0"
  2014. Margin="0,5,5,-11"
  2015. HorizontalContentAlignment="Stretch"
  2016. VerticalContentAlignment="Stretch"
  2017. Style="{StaticResource MainArea_Button}"
  2018. Visibility="{Binding IsNTPVisibility}">
  2019. <ContentControl>
  2020. <Canvas>
  2021. <TextBlock
  2022. Canvas.Left="60"
  2023. Margin="0"
  2024. HorizontalAlignment="Center"
  2025. VerticalAlignment="Bottom"
  2026. FontSize="16"
  2027. Style="{StaticResource TextBlock_Title}"
  2028. Text="Gas"/>
  2029. <Image
  2030. Canvas.Left="1"
  2031. Width="40"
  2032. Source="/FurnaceUI;component/Resources/images/icons/Gas44.png"/>
  2033. <Grid
  2034. x:Name="PM1_Info2"
  2035. Grid.Column="1"
  2036. Canvas.Top="42"
  2037. Height="440"
  2038. Visibility="{Binding IsPMAVisibility}">
  2039. <Grid.RowDefinitions>
  2040. <RowDefinition Height="0"/>
  2041. <RowDefinition Height="20"/>
  2042. <RowDefinition Height="28"/>
  2043. <RowDefinition Height="28"/>
  2044. <RowDefinition Height="28"/>
  2045. <RowDefinition Height="28"/>
  2046. <RowDefinition Height="28"/>
  2047. <RowDefinition Height="28"/>
  2048. <RowDefinition Height="28"/>
  2049. <RowDefinition Height="28"/>
  2050. <RowDefinition Height="28"/>
  2051. <RowDefinition Height="28"/>
  2052. <RowDefinition Height="28"/>
  2053. <RowDefinition Height="28"/>
  2054. <RowDefinition Height="28"/>
  2055. <RowDefinition Height="28"/>
  2056. <RowDefinition Height="28"/>
  2057. </Grid.RowDefinitions>
  2058. <Grid.ColumnDefinitions>
  2059. <ColumnDefinition Width="100"/>
  2060. <ColumnDefinition Width="60"/>
  2061. <ColumnDefinition Width="60"/>
  2062. <ColumnDefinition Width="60"/>
  2063. </Grid.ColumnDefinitions>
  2064. <Border
  2065. Grid.Row="1"
  2066. Grid.Column="0"
  2067. Padding="5,1,5,1"
  2068. Background="{DynamicResource Table_BG_Title}"
  2069. BorderBrush="{DynamicResource Table_BD}"
  2070. BorderThickness="0,0,1,1"/>
  2071. <Border
  2072. Grid.Row="2"
  2073. Grid.Column="0"
  2074. Padding="5,1,5,1"
  2075. Background="{DynamicResource Table_BG_Title}"
  2076. BorderBrush="{DynamicResource Table_BD}"
  2077. BorderThickness="1,0,1,1">
  2078. <Label
  2079. HorizontalAlignment="Center"
  2080. VerticalAlignment="Center"
  2081. Content="{Binding VG21Data.DisplayName}"
  2082. FontSize="16"
  2083. Foreground="{DynamicResource FG_Black}"/>
  2084. </Border>
  2085. <Border
  2086. Grid.Row="3"
  2087. Grid.Column="0"
  2088. Padding="5,1,5,1"
  2089. Background="{DynamicResource Table_BG_Title}"
  2090. BorderBrush="{DynamicResource Table_BD}"
  2091. BorderThickness="1,0,1,1">
  2092. <Label
  2093. HorizontalAlignment="Center"
  2094. VerticalAlignment="Center"
  2095. Content="{Binding VG22Data.DisplayName}"
  2096. FontSize="16"
  2097. Foreground="{DynamicResource FG_Black}"/>
  2098. </Border>
  2099. <Border
  2100. Grid.Row="4"
  2101. Grid.Column="0"
  2102. Padding="5,1,5,1"
  2103. Background="{DynamicResource Table_BG_Title}"
  2104. BorderBrush="{DynamicResource Table_BD}"
  2105. BorderThickness="1,0,1,1">
  2106. <Label
  2107. HorizontalAlignment="Center"
  2108. VerticalAlignment="Center"
  2109. Content="{Binding MFC1Data.DisplayName}"
  2110. FontSize="16"
  2111. Foreground="{DynamicResource FG_Black}"/>
  2112. </Border>
  2113. <Border
  2114. Grid.Row="5"
  2115. Grid.Column="0"
  2116. Padding="5,1,5,1"
  2117. Background="{DynamicResource Table_BG_Title}"
  2118. BorderBrush="{DynamicResource Table_BD}"
  2119. BorderThickness="1,0,1,1">
  2120. <Label
  2121. HorizontalAlignment="Center"
  2122. VerticalAlignment="Center"
  2123. Content="{Binding MFC2Data.DisplayName}"
  2124. FontSize="16"
  2125. Foreground="{DynamicResource FG_Black}"/>
  2126. </Border>
  2127. <Border
  2128. Grid.Row="6"
  2129. Grid.Column="0"
  2130. Padding="5,1,5,1"
  2131. Background="{DynamicResource Table_BG_Title}"
  2132. BorderBrush="{DynamicResource Table_BD}"
  2133. BorderThickness="1,0,1,1">
  2134. <Label
  2135. HorizontalAlignment="Center"
  2136. VerticalAlignment="Center"
  2137. Content="{Binding MFC3Data.DisplayName}"
  2138. FontSize="16"
  2139. Foreground="{DynamicResource FG_Black}"/>
  2140. </Border>
  2141. <Border
  2142. Grid.Row="7"
  2143. Grid.Column="0"
  2144. Padding="5,1,5,1"
  2145. Background="{DynamicResource Table_BG_Title}"
  2146. BorderBrush="{DynamicResource Table_BD}"
  2147. BorderThickness="1,0,1,1">
  2148. <Label
  2149. HorizontalAlignment="Center"
  2150. VerticalAlignment="Center"
  2151. Content="{Binding MFC4Data.DisplayName}"
  2152. FontSize="16"
  2153. Foreground="{DynamicResource FG_Black}"/>
  2154. </Border>
  2155. <Border
  2156. Grid.Row="8"
  2157. Grid.Column="0"
  2158. Padding="5,1,5,1"
  2159. Background="{DynamicResource Table_BG_Title}"
  2160. BorderBrush="{DynamicResource Table_BD}"
  2161. BorderThickness="1,0,1,1">
  2162. <Label
  2163. HorizontalAlignment="Center"
  2164. VerticalAlignment="Center"
  2165. Content="{Binding MFC5Data.DisplayName}"
  2166. FontSize="16"
  2167. Foreground="{DynamicResource FG_Black}"/>
  2168. </Border>
  2169. <Border
  2170. Grid.Row="9"
  2171. Grid.Column="0"
  2172. Padding="5,1,5,1"
  2173. Background="{DynamicResource Table_BG_Title}"
  2174. BorderBrush="{DynamicResource Table_BD}"
  2175. BorderThickness="1,0,1,1">
  2176. <Label
  2177. HorizontalAlignment="Center"
  2178. VerticalAlignment="Center"
  2179. Content="{Binding MFC6Data.DisplayName}"
  2180. FontSize="16"
  2181. Foreground="{DynamicResource FG_Black}"/>
  2182. </Border>
  2183. <Border
  2184. Grid.Row="10"
  2185. Grid.Column="0"
  2186. Padding="5,1,5,1"
  2187. Background="{DynamicResource Table_BG_Title}"
  2188. BorderBrush="{DynamicResource Table_BD}"
  2189. BorderThickness="1,0,1,1">
  2190. <Label
  2191. HorizontalAlignment="Center"
  2192. VerticalAlignment="Center"
  2193. Content="{Binding MFC7Data.DisplayName}"
  2194. FontSize="16"
  2195. Foreground="{DynamicResource FG_Black}"/>
  2196. </Border>
  2197. <Border
  2198. Grid.Row="11"
  2199. Grid.Column="0"
  2200. Padding="5,1,5,1"
  2201. Background="{DynamicResource Table_BG_Title}"
  2202. BorderBrush="{DynamicResource Table_BD}"
  2203. BorderThickness="1,0,1,1">
  2204. <Label
  2205. HorizontalAlignment="Center"
  2206. VerticalAlignment="Center"
  2207. Content="{Binding MFC8Data.DisplayName}"
  2208. FontSize="16"
  2209. Foreground="{DynamicResource FG_Black}"/>
  2210. </Border>
  2211. <Border
  2212. Grid.Row="12"
  2213. Grid.Column="0"
  2214. Padding="5,1,5,1"
  2215. Background="{DynamicResource Table_BG_Title}"
  2216. BorderBrush="{DynamicResource Table_BD}"
  2217. BorderThickness="1,0,1,1">
  2218. <Label
  2219. HorizontalAlignment="Center"
  2220. VerticalAlignment="Center"
  2221. Content="{Binding MFC9Data.DisplayName}"
  2222. FontSize="16"
  2223. Foreground="{DynamicResource FG_Black}"/>
  2224. </Border>
  2225. <Border
  2226. Grid.Row="13"
  2227. Grid.Column="0"
  2228. Padding="5,1,5,1"
  2229. Background="{DynamicResource Table_BG_Title}"
  2230. BorderBrush="{DynamicResource Table_BD}"
  2231. BorderThickness="1,0,1,1">
  2232. <Label
  2233. HorizontalAlignment="Center"
  2234. VerticalAlignment="Center"
  2235. Content="{Binding MFC10Data.DisplayName}"
  2236. FontSize="16"
  2237. Foreground="{DynamicResource FG_Black}"/>
  2238. </Border>
  2239. <Border
  2240. Grid.Row="14"
  2241. Grid.Column="0"
  2242. Padding="5,1,5,1"
  2243. Background="{DynamicResource Table_BG_Title}"
  2244. BorderBrush="{DynamicResource Table_BD}"
  2245. BorderThickness="1,0,1,1">
  2246. <Label
  2247. HorizontalAlignment="Center"
  2248. VerticalAlignment="Center"
  2249. Content="{Binding MFC11Data.DisplayName}"
  2250. FontSize="16"
  2251. Foreground="{DynamicResource FG_Black}"/>
  2252. </Border>
  2253. <Border
  2254. Grid.Row="15"
  2255. Grid.Column="0"
  2256. Padding="5,1,5,1"
  2257. Background="{DynamicResource Table_BG_Title}"
  2258. BorderBrush="{DynamicResource Table_BD}"
  2259. BorderThickness="1,0,1,1">
  2260. <Label
  2261. HorizontalAlignment="Center"
  2262. VerticalAlignment="Center"
  2263. Content="{Binding MFC12Data.DisplayName}"
  2264. FontSize="16"
  2265. Foreground="{DynamicResource FG_Black}"/>
  2266. </Border>
  2267. <Border
  2268. Grid.Row="16"
  2269. Grid.Column="0"
  2270. Padding="5,1,5,1"
  2271. Background="{DynamicResource Table_BG_Title}"
  2272. BorderBrush="{DynamicResource Table_BD}"
  2273. BorderThickness="1,0,1,1">
  2274. <Label
  2275. HorizontalAlignment="Center"
  2276. VerticalAlignment="Center"
  2277. Content="{Binding MFC51Data.DisplayName}"
  2278. FontSize="16"
  2279. Foreground="{DynamicResource FG_Black}"/>
  2280. </Border>
  2281. <Border
  2282. Grid.Row="1"
  2283. Grid.Column="1"
  2284. Background="{DynamicResource Table_BG_Content}"
  2285. BorderBrush="{DynamicResource Table_BD}"
  2286. BorderThickness="0,1,1,1">
  2287. <TextBlock
  2288. HorizontalAlignment="Center"
  2289. VerticalAlignment="Center"
  2290. FontSize="16"
  2291. Foreground="{DynamicResource FG_Black}"
  2292. Text="Actual"
  2293. TextWrapping="Wrap"/>
  2294. </Border>
  2295. <Border
  2296. Grid.Row="1"
  2297. Grid.Column="2"
  2298. Background="{DynamicResource Table_BG_Content}"
  2299. BorderBrush="{DynamicResource Table_BD}"
  2300. BorderThickness="0,1,1,1">
  2301. <TextBlock
  2302. HorizontalAlignment="Center"
  2303. VerticalAlignment="Center"
  2304. FontSize="16"
  2305. Foreground="{DynamicResource FG_Black}"
  2306. Text="Set"
  2307. TextWrapping="Wrap"/>
  2308. </Border>
  2309. <Border
  2310. Grid.Row="2"
  2311. Grid.Column="1"
  2312. Background="{DynamicResource Table_BG_Content}"
  2313. BorderBrush="{DynamicResource Table_BD}"
  2314. BorderThickness="0,0,1,1">
  2315. <TextBlock
  2316. HorizontalAlignment="Center"
  2317. VerticalAlignment="Center"
  2318. FontSize="16"
  2319. Foreground="{DynamicResource FG_Black}"
  2320. Text="{Binding VG21Data.FeedBack, StringFormat={}{0:f3}}"
  2321. TextWrapping="Wrap"/>
  2322. </Border>
  2323. <Border
  2324. Grid.Row="2"
  2325. Grid.Column="2"
  2326. Background="{DynamicResource Table_BG_Content}"
  2327. BorderBrush="{DynamicResource Table_BD}"
  2328. BorderThickness="0,0,1,1">
  2329. <TextBlock
  2330. HorizontalAlignment="Center"
  2331. VerticalAlignment="Center"
  2332. FontSize="16"
  2333. Foreground="{DynamicResource FG_Black}"
  2334. Text="{Binding VG21Data.SetPoint, StringFormat={}{0:f3}}"
  2335. TextWrapping="Wrap"/>
  2336. </Border>
  2337. <Border
  2338. Grid.Row="3"
  2339. Grid.Column="1"
  2340. Background="{DynamicResource Table_BG_Content}"
  2341. BorderBrush="{DynamicResource Table_BD}"
  2342. BorderThickness="0,0,1,1">
  2343. <TextBlock
  2344. HorizontalAlignment="Center"
  2345. VerticalAlignment="Center"
  2346. FontSize="16"
  2347. Foreground="{DynamicResource FG_Black}"
  2348. Text="{Binding VG22Data.FeedBack, StringFormat={}{0:f3}}"
  2349. TextWrapping="Wrap"/>
  2350. </Border>
  2351. <Border
  2352. Grid.Row="3"
  2353. Grid.Column="2"
  2354. Background="{DynamicResource Table_BG_Content}"
  2355. BorderBrush="{DynamicResource Table_BD}"
  2356. BorderThickness="0,0,1,1">
  2357. <TextBlock
  2358. HorizontalAlignment="Center"
  2359. VerticalAlignment="Center"
  2360. FontSize="16"
  2361. Foreground="{DynamicResource FG_Black}"
  2362. Text="{Binding VG22Data.SetPoint, StringFormat={}{0:f3}}"
  2363. TextWrapping="Wrap"/>
  2364. </Border>
  2365. <Border
  2366. Grid.Row="4"
  2367. Grid.Column="1"
  2368. Background="{DynamicResource Table_BG_Content}"
  2369. BorderBrush="{DynamicResource Table_BD}"
  2370. BorderThickness="0,0,1,1">
  2371. <TextBlock
  2372. HorizontalAlignment="Center"
  2373. VerticalAlignment="Center"
  2374. FontSize="16"
  2375. Foreground="{DynamicResource FG_Black}"
  2376. Text="{Binding MFC1Data.FeedBack, StringFormat={}{0:f1}}"
  2377. TextWrapping="Wrap"/>
  2378. </Border>
  2379. <Border
  2380. Grid.Row="4"
  2381. Grid.Column="2"
  2382. Background="{DynamicResource Table_BG_Content}"
  2383. BorderBrush="{DynamicResource Table_BD}"
  2384. BorderThickness="0,0,1,1">
  2385. <TextBlock
  2386. HorizontalAlignment="Center"
  2387. VerticalAlignment="Center"
  2388. FontSize="16"
  2389. Foreground="{DynamicResource FG_Black}"
  2390. Text="{Binding MFC1Data.SetPoint, StringFormat={}{0:f1}}"
  2391. TextWrapping="Wrap"/>
  2392. </Border>
  2393. <Border
  2394. Grid.Row="5"
  2395. Grid.Column="1"
  2396. Background="{DynamicResource Table_BG_Content}"
  2397. BorderBrush="{DynamicResource Table_BD}"
  2398. BorderThickness="0,0,1,1">
  2399. <TextBlock
  2400. HorizontalAlignment="Center"
  2401. VerticalAlignment="Center"
  2402. FontSize="16"
  2403. Foreground="{DynamicResource FG_Black}"
  2404. Text="{Binding MFC2Data.FeedBack, StringFormat={}{0:f1}}"
  2405. TextWrapping="Wrap"/>
  2406. </Border>
  2407. <Border
  2408. Grid.Row="5"
  2409. Grid.Column="2"
  2410. Background="{DynamicResource Table_BG_Content}"
  2411. BorderBrush="{DynamicResource Table_BD}"
  2412. BorderThickness="0,0,1,1">
  2413. <TextBlock
  2414. HorizontalAlignment="Center"
  2415. VerticalAlignment="Center"
  2416. FontSize="16"
  2417. Foreground="{DynamicResource FG_Black}"
  2418. Text="{Binding MFC2Data.SetPoint, StringFormat={}{0:f1}}"
  2419. TextWrapping="Wrap"/>
  2420. </Border>
  2421. <Border
  2422. Grid.Row="6"
  2423. Grid.Column="1"
  2424. Background="{DynamicResource Table_BG_Content}"
  2425. BorderBrush="{DynamicResource Table_BD}"
  2426. BorderThickness="0,0,1,1">
  2427. <TextBlock
  2428. HorizontalAlignment="Center"
  2429. VerticalAlignment="Center"
  2430. FontSize="16"
  2431. Foreground="{DynamicResource FG_Black}"
  2432. Text="{Binding MFC3Data.FeedBack, StringFormat={}{0:f1}}"
  2433. TextWrapping="Wrap"/>
  2434. </Border>
  2435. <Border
  2436. Grid.Row="6"
  2437. Grid.Column="2"
  2438. Background="{DynamicResource Table_BG_Content}"
  2439. BorderBrush="{DynamicResource Table_BD}"
  2440. BorderThickness="0,0,1,1">
  2441. <TextBlock
  2442. HorizontalAlignment="Center"
  2443. VerticalAlignment="Center"
  2444. FontSize="16"
  2445. Foreground="{DynamicResource FG_Black}"
  2446. Text="{Binding MFC3Data.SetPoint, StringFormat={}{0:f1}}"
  2447. TextWrapping="Wrap"/>
  2448. </Border>
  2449. <Border
  2450. Grid.Row="7"
  2451. Grid.Column="1"
  2452. Background="{DynamicResource Table_BG_Content}"
  2453. BorderBrush="{DynamicResource Table_BD}"
  2454. BorderThickness="0,0,1,1">
  2455. <TextBlock
  2456. HorizontalAlignment="Center"
  2457. VerticalAlignment="Center"
  2458. FontSize="16"
  2459. Foreground="{DynamicResource FG_Black}"
  2460. Text="{Binding MFC4Data.FeedBack, StringFormat={}{0:f1}}"
  2461. TextWrapping="Wrap"/>
  2462. </Border>
  2463. <Border
  2464. Grid.Row="7"
  2465. Grid.Column="2"
  2466. Background="{DynamicResource Table_BG_Content}"
  2467. BorderBrush="{DynamicResource Table_BD}"
  2468. BorderThickness="0,0,1,1">
  2469. <TextBlock
  2470. HorizontalAlignment="Center"
  2471. VerticalAlignment="Center"
  2472. FontSize="16"
  2473. Foreground="{DynamicResource FG_Black}"
  2474. Text="{Binding MFC4Data.SetPoint, StringFormat={}{0:f1}}"
  2475. TextWrapping="Wrap"/>
  2476. </Border>
  2477. <Border
  2478. Grid.Row="8"
  2479. Grid.Column="1"
  2480. Background="{DynamicResource Table_BG_Content}"
  2481. BorderBrush="{DynamicResource Table_BD}"
  2482. BorderThickness="0,0,1,1">
  2483. <TextBlock
  2484. HorizontalAlignment="Center"
  2485. VerticalAlignment="Center"
  2486. FontSize="16"
  2487. Foreground="{DynamicResource FG_Black}"
  2488. Text="{Binding MFC5Data.FeedBack, StringFormat={}{0:f1}}"
  2489. TextWrapping="Wrap"/>
  2490. </Border>
  2491. <Border
  2492. Grid.Row="8"
  2493. Grid.Column="2"
  2494. Background="{DynamicResource Table_BG_Content}"
  2495. BorderBrush="{DynamicResource Table_BD}"
  2496. BorderThickness="0,0,1,1">
  2497. <TextBlock
  2498. HorizontalAlignment="Center"
  2499. VerticalAlignment="Center"
  2500. FontSize="16"
  2501. Foreground="{DynamicResource FG_Black}"
  2502. Text="{Binding MFC5Data.SetPoint, StringFormat={}{0:f1}}"
  2503. TextWrapping="Wrap"/>
  2504. </Border>
  2505. <Border
  2506. Grid.Row="9"
  2507. Grid.Column="1"
  2508. Background="{DynamicResource Table_BG_Content}"
  2509. BorderBrush="{DynamicResource Table_BD}"
  2510. BorderThickness="0,0,1,1">
  2511. <TextBlock
  2512. HorizontalAlignment="Center"
  2513. VerticalAlignment="Center"
  2514. FontSize="16"
  2515. Foreground="{DynamicResource FG_Black}"
  2516. Text="{Binding MFC6Data.FeedBack, StringFormat={}{0:f1}}"
  2517. TextWrapping="Wrap"/>
  2518. </Border>
  2519. <Border
  2520. Grid.Row="9"
  2521. Grid.Column="2"
  2522. Background="{DynamicResource Table_BG_Content}"
  2523. BorderBrush="{DynamicResource Table_BD}"
  2524. BorderThickness="0,0,1,1">
  2525. <TextBlock
  2526. HorizontalAlignment="Center"
  2527. VerticalAlignment="Center"
  2528. FontSize="16"
  2529. Foreground="{DynamicResource FG_Black}"
  2530. Text="{Binding MFC6Data.SetPoint, StringFormat={}{0:f1}}"
  2531. TextWrapping="Wrap"/>
  2532. </Border>
  2533. <Border
  2534. Grid.Row="10"
  2535. Grid.Column="1"
  2536. Background="{DynamicResource Table_BG_Content}"
  2537. BorderBrush="{DynamicResource Table_BD}"
  2538. BorderThickness="0,0,1,1">
  2539. <TextBlock
  2540. HorizontalAlignment="Center"
  2541. VerticalAlignment="Center"
  2542. FontSize="16"
  2543. Foreground="{DynamicResource FG_Black}"
  2544. Text="{Binding MFC7Data.FeedBack, StringFormat={}{0:f1}}"
  2545. TextWrapping="Wrap"/>
  2546. </Border>
  2547. <Border
  2548. Grid.Row="10"
  2549. Grid.Column="2"
  2550. Background="{DynamicResource Table_BG_Content}"
  2551. BorderBrush="{DynamicResource Table_BD}"
  2552. BorderThickness="0,0,1,1">
  2553. <TextBlock
  2554. HorizontalAlignment="Center"
  2555. VerticalAlignment="Center"
  2556. FontSize="16"
  2557. Foreground="{DynamicResource FG_Black}"
  2558. Text="{Binding MFC7Data.SetPoint, StringFormat={}{0:f1}}"
  2559. TextWrapping="Wrap"/>
  2560. </Border>
  2561. <Border
  2562. Grid.Row="11"
  2563. Grid.Column="1"
  2564. Background="{DynamicResource Table_BG_Content}"
  2565. BorderBrush="{DynamicResource Table_BD}"
  2566. BorderThickness="0,0,1,1">
  2567. <TextBlock
  2568. HorizontalAlignment="Center"
  2569. VerticalAlignment="Center"
  2570. FontSize="16"
  2571. Foreground="{DynamicResource FG_Black}"
  2572. Text="{Binding MFC8Data.FeedBack, StringFormat={}{0:f1}}"
  2573. TextWrapping="Wrap"/>
  2574. </Border>
  2575. <Border
  2576. Grid.Row="11"
  2577. Grid.Column="2"
  2578. Background="{DynamicResource Table_BG_Content}"
  2579. BorderBrush="{DynamicResource Table_BD}"
  2580. BorderThickness="0,0,1,1">
  2581. <TextBlock
  2582. HorizontalAlignment="Center"
  2583. VerticalAlignment="Center"
  2584. FontSize="16"
  2585. Foreground="{DynamicResource FG_Black}"
  2586. Text="{Binding MFC8Data.SetPoint, StringFormat={}{0:f1}}"
  2587. TextWrapping="Wrap"/>
  2588. </Border>
  2589. <Border
  2590. Grid.Row="12"
  2591. Grid.Column="1"
  2592. Background="{DynamicResource Table_BG_Content}"
  2593. BorderBrush="{DynamicResource Table_BD}"
  2594. BorderThickness="0,0,1,1">
  2595. <TextBlock
  2596. HorizontalAlignment="Center"
  2597. VerticalAlignment="Center"
  2598. FontSize="16"
  2599. Foreground="{DynamicResource FG_Black}"
  2600. Text="{Binding MFC9Data.FeedBack, StringFormat={}{0:f1}}"
  2601. TextWrapping="Wrap"/>
  2602. </Border>
  2603. <Border
  2604. Grid.Row="12"
  2605. Grid.Column="2"
  2606. Background="{DynamicResource Table_BG_Content}"
  2607. BorderBrush="{DynamicResource Table_BD}"
  2608. BorderThickness="0,0,1,1">
  2609. <TextBlock
  2610. HorizontalAlignment="Center"
  2611. VerticalAlignment="Center"
  2612. FontSize="16"
  2613. Foreground="{DynamicResource FG_Black}"
  2614. Text="{Binding MFC9Data.SetPoint, StringFormat={}{0:f1}}"
  2615. TextWrapping="Wrap"/>
  2616. </Border>
  2617. <Border
  2618. Grid.Row="13"
  2619. Grid.Column="1"
  2620. Background="{DynamicResource Table_BG_Content}"
  2621. BorderBrush="{DynamicResource Table_BD}"
  2622. BorderThickness="0,0,1,1">
  2623. <TextBlock
  2624. HorizontalAlignment="Center"
  2625. VerticalAlignment="Center"
  2626. FontSize="16"
  2627. Foreground="{DynamicResource FG_Black}"
  2628. Text="{Binding MFC10Data.FeedBack, StringFormat={}{0:f1}}"
  2629. TextWrapping="Wrap"/>
  2630. </Border>
  2631. <Border
  2632. Grid.Row="13"
  2633. Grid.Column="2"
  2634. Background="{DynamicResource Table_BG_Content}"
  2635. BorderBrush="{DynamicResource Table_BD}"
  2636. BorderThickness="0,0,1,1">
  2637. <TextBlock
  2638. HorizontalAlignment="Center"
  2639. VerticalAlignment="Center"
  2640. FontSize="16"
  2641. Foreground="{DynamicResource FG_Black}"
  2642. Text="{Binding MFC10Data.SetPoint, StringFormat={}{0:f1}}"
  2643. TextWrapping="Wrap"/>
  2644. </Border>
  2645. <Border
  2646. Grid.Row="14"
  2647. Grid.Column="1"
  2648. Background="{DynamicResource Table_BG_Content}"
  2649. BorderBrush="{DynamicResource Table_BD}"
  2650. BorderThickness="0,0,1,1">
  2651. <TextBlock
  2652. HorizontalAlignment="Center"
  2653. VerticalAlignment="Center"
  2654. FontSize="16"
  2655. Foreground="{DynamicResource FG_Black}"
  2656. Text="{Binding MFC11Data.FeedBack, StringFormat={}{0:f1}}"
  2657. TextWrapping="Wrap"/>
  2658. </Border>
  2659. <Border
  2660. Grid.Row="14"
  2661. Grid.Column="2"
  2662. Background="{DynamicResource Table_BG_Content}"
  2663. BorderBrush="{DynamicResource Table_BD}"
  2664. BorderThickness="0,0,1,1">
  2665. <TextBlock
  2666. HorizontalAlignment="Center"
  2667. VerticalAlignment="Center"
  2668. FontSize="16"
  2669. Foreground="{DynamicResource FG_Black}"
  2670. Text="{Binding MFC11Data.SetPoint, StringFormat={}{0:f1}}"
  2671. TextWrapping="Wrap"/>
  2672. </Border>
  2673. <Border
  2674. Grid.Row="15"
  2675. Grid.Column="1"
  2676. Background="{DynamicResource Table_BG_Content}"
  2677. BorderBrush="{DynamicResource Table_BD}"
  2678. BorderThickness="0,0,1,1">
  2679. <TextBlock
  2680. HorizontalAlignment="Center"
  2681. VerticalAlignment="Center"
  2682. FontSize="16"
  2683. Foreground="{DynamicResource FG_Black}"
  2684. Text="{Binding MFC12Data.FeedBack, StringFormat={}{0:f1}}"
  2685. TextWrapping="Wrap"/>
  2686. </Border>
  2687. <Border
  2688. Grid.Row="15"
  2689. Grid.Column="2"
  2690. Background="{DynamicResource Table_BG_Content}"
  2691. BorderBrush="{DynamicResource Table_BD}"
  2692. BorderThickness="0,0,1,1">
  2693. <TextBlock
  2694. HorizontalAlignment="Center"
  2695. VerticalAlignment="Center"
  2696. FontSize="16"
  2697. Foreground="{DynamicResource FG_Black}"
  2698. Text="{Binding MFC12Data.SetPoint, StringFormat={}{0:f1}}"
  2699. TextWrapping="Wrap"/>
  2700. </Border>
  2701. <Border
  2702. Grid.Row="16"
  2703. Grid.Column="1"
  2704. Background="{DynamicResource Table_BG_Content}"
  2705. BorderBrush="{DynamicResource Table_BD}"
  2706. BorderThickness="0,0,1,1">
  2707. <TextBlock
  2708. HorizontalAlignment="Center"
  2709. VerticalAlignment="Center"
  2710. FontSize="16"
  2711. Foreground="{DynamicResource FG_Black}"
  2712. Text="{Binding MFC51Data.FeedBack, StringFormat={}{0:f1}}"
  2713. TextWrapping="Wrap"/>
  2714. </Border>
  2715. <Border
  2716. Grid.Row="16"
  2717. Grid.Column="2"
  2718. Background="{DynamicResource Table_BG_Content}"
  2719. BorderBrush="{DynamicResource Table_BD}"
  2720. BorderThickness="0,0,1,1">
  2721. <TextBlock
  2722. HorizontalAlignment="Center"
  2723. VerticalAlignment="Center"
  2724. FontSize="16"
  2725. Foreground="{DynamicResource FG_Black}"
  2726. Text="{Binding MFC51Data.SetPoint, StringFormat={}{0:f1}}"
  2727. TextWrapping="Wrap"/>
  2728. </Border>
  2729. <Label
  2730. Grid.Row="2"
  2731. Grid.Column="3"
  2732. Content="{Binding DefaultUnit}"/>
  2733. <Label
  2734. Grid.Row="3"
  2735. Grid.Column="3"
  2736. Content="{Binding DefaultUnit}"/>
  2737. <Label
  2738. Grid.Row="4"
  2739. Grid.Column="3"
  2740. Content="{Binding MFC1Data.Unit}"/>
  2741. <Label
  2742. Grid.Row="5"
  2743. Grid.Column="3"
  2744. Content="{Binding MFC2Data.Unit}"/>
  2745. <Label
  2746. Grid.Row="6"
  2747. Grid.Column="3"
  2748. Content="{Binding MFC3Data.Unit}"/>
  2749. <Label
  2750. Grid.Row="7"
  2751. Grid.Column="3"
  2752. Content="{Binding MFC4Data.Unit}"/>
  2753. <Label
  2754. Grid.Row="8"
  2755. Grid.Column="3"
  2756. Content="{Binding MFC5Data.Unit}"/>
  2757. <Label
  2758. Grid.Row="9"
  2759. Grid.Column="3"
  2760. Content="{Binding MFC6Data.Unit}"/>
  2761. <Label
  2762. Grid.Row="10"
  2763. Grid.Column="3"
  2764. Content="{Binding MFC7Data.Unit}"/>
  2765. <Label
  2766. Grid.Row="11"
  2767. Grid.Column="3"
  2768. Content="{Binding MFC8Data.Unit}"/>
  2769. <Label
  2770. Grid.Row="12"
  2771. Grid.Column="3"
  2772. Content="{Binding MFC9Data.Unit}"/>
  2773. <Label
  2774. Grid.Row="13"
  2775. Grid.Column="3"
  2776. Content="{Binding MFC10Data.Unit}"/>
  2777. <Label
  2778. Grid.Row="14"
  2779. Grid.Column="3"
  2780. Content="{Binding MFC11Data.Unit}"/>
  2781. <Label
  2782. Grid.Row="15"
  2783. Grid.Column="3"
  2784. Content="{Binding MFC12Data.Unit}"/>
  2785. <Label
  2786. Grid.Row="16"
  2787. Grid.Column="3"
  2788. Content="{Binding MFC51Data.Unit}"/>
  2789. <Grid.Resources>
  2790. <Style TargetType="Label">
  2791. <Setter Property="HorizontalContentAlignment" Value="Left"/>
  2792. <Setter Property="VerticalContentAlignment" Value="Center"/>
  2793. </Style>
  2794. </Grid.Resources>
  2795. </Grid>
  2796. </Canvas>
  2797. </ContentControl>
  2798. <i:Interaction.Triggers>
  2799. <i:EventTrigger EventName="Click">
  2800. <cal:ActionMessage MethodName="SwitchPage">
  2801. <cal:Parameter Value="Gas"/>
  2802. </cal:ActionMessage>
  2803. </i:EventTrigger>
  2804. </i:Interaction.Triggers>
  2805. </Button>
  2806. <Button
  2807. Grid.Row="0"
  2808. Grid.Column="0"
  2809. Margin="0,5,5,-11"
  2810. HorizontalContentAlignment="Stretch"
  2811. VerticalContentAlignment="Stretch"
  2812. Style="{StaticResource MainArea_Button}"
  2813. Visibility="{Binding IsSiBCNVisibility}">
  2814. <ContentControl>
  2815. <Canvas>
  2816. <TextBlock
  2817. Canvas.Left="60"
  2818. Margin="0"
  2819. HorizontalAlignment="Center"
  2820. VerticalAlignment="Bottom"
  2821. FontSize="16"
  2822. Style="{StaticResource TextBlock_Title}"
  2823. Text="Gas"/>
  2824. <Image
  2825. Canvas.Left="1"
  2826. Width="30"
  2827. Source="/FurnaceUI;component/Resources/images/icons/Gas44.png"/>
  2828. <Grid
  2829. x:Name="PM1_Info3"
  2830. Grid.Column="1"
  2831. Canvas.Top="30"
  2832. Height="460"
  2833. Visibility="{Binding IsPMAVisibility}">
  2834. <Grid.RowDefinitions>
  2835. <RowDefinition Height="0"/>
  2836. <RowDefinition Height="20"/>
  2837. <RowDefinition Height="23"/>
  2838. <RowDefinition Height="23"/>
  2839. <RowDefinition Height="23"/>
  2840. <RowDefinition Height="23"/>
  2841. <RowDefinition Height="23"/>
  2842. <RowDefinition Height="23"/>
  2843. <RowDefinition Height="23"/>
  2844. <RowDefinition Height="23"/>
  2845. <RowDefinition Height="23"/>
  2846. <RowDefinition Height="23"/>
  2847. <RowDefinition Height="23"/>
  2848. <RowDefinition Height="23"/>
  2849. <RowDefinition Height="23"/>
  2850. <RowDefinition Height="23"/>
  2851. <RowDefinition Height="23"/>
  2852. <RowDefinition Height="23"/>
  2853. <RowDefinition Height="23"/>
  2854. <RowDefinition Height="23"/>
  2855. <RowDefinition Height="23"/>
  2856. </Grid.RowDefinitions>
  2857. <Grid.ColumnDefinitions>
  2858. <ColumnDefinition Width="100"/>
  2859. <ColumnDefinition Width="60"/>
  2860. <ColumnDefinition Width="60"/>
  2861. <ColumnDefinition Width="60"/>
  2862. </Grid.ColumnDefinitions>
  2863. <Border
  2864. Grid.Row="1"
  2865. Grid.Column="0"
  2866. Background="{DynamicResource Table_BG_Title}"
  2867. BorderBrush="{DynamicResource Table_BD}"
  2868. BorderThickness="0,0,1,1"/>
  2869. <Border
  2870. Grid.Row="2"
  2871. Grid.Column="0"
  2872. Background="{DynamicResource Table_BG_Title}"
  2873. BorderBrush="{DynamicResource Table_BD}"
  2874. BorderThickness="1,0,1,1">
  2875. <Label
  2876. HorizontalAlignment="Center"
  2877. VerticalAlignment="Center"
  2878. Content="{Binding VG21Data.DisplayName}"
  2879. FontSize="13"
  2880. Foreground="{DynamicResource FG_Black}"/>
  2881. </Border>
  2882. <Border
  2883. Grid.Row="3"
  2884. Grid.Column="0"
  2885. Background="{DynamicResource Table_BG_Title}"
  2886. BorderBrush="{DynamicResource Table_BD}"
  2887. BorderThickness="1,0,1,1">
  2888. <Label
  2889. HorizontalAlignment="Center"
  2890. VerticalAlignment="Center"
  2891. Content="{Binding VG22Data.DisplayName}"
  2892. FontSize="13"
  2893. Foreground="{DynamicResource FG_Black}"/>
  2894. </Border>
  2895. <Border
  2896. Grid.Row="4"
  2897. Grid.Column="0"
  2898. Background="{DynamicResource Table_BG_Title}"
  2899. BorderBrush="{DynamicResource Table_BD}"
  2900. BorderThickness="1,0,1,1">
  2901. <Label
  2902. HorizontalAlignment="Center"
  2903. VerticalAlignment="Center"
  2904. Content="{Binding MFC1Data.DisplayName}"
  2905. FontSize="13"
  2906. Foreground="{DynamicResource FG_Black}"/>
  2907. </Border>
  2908. <Border
  2909. Grid.Row="5"
  2910. Grid.Column="0"
  2911. Background="{DynamicResource Table_BG_Title}"
  2912. BorderBrush="{DynamicResource Table_BD}"
  2913. BorderThickness="1,0,1,1">
  2914. <Label
  2915. HorizontalAlignment="Center"
  2916. VerticalAlignment="Center"
  2917. Content="{Binding MFC2Data.DisplayName}"
  2918. FontSize="13"
  2919. Foreground="{DynamicResource FG_Black}"/>
  2920. </Border>
  2921. <Border
  2922. Grid.Row="6"
  2923. Grid.Column="0"
  2924. Background="{DynamicResource Table_BG_Title}"
  2925. BorderBrush="{DynamicResource Table_BD}"
  2926. BorderThickness="1,0,1,1">
  2927. <Label
  2928. HorizontalAlignment="Center"
  2929. VerticalAlignment="Center"
  2930. Content="{Binding MFC3Data.DisplayName}"
  2931. FontSize="13"
  2932. Foreground="{DynamicResource FG_Black}"/>
  2933. </Border>
  2934. <Border
  2935. Grid.Row="7"
  2936. Grid.Column="0"
  2937. Background="{DynamicResource Table_BG_Title}"
  2938. BorderBrush="{DynamicResource Table_BD}"
  2939. BorderThickness="1,0,1,1">
  2940. <Label
  2941. HorizontalAlignment="Center"
  2942. VerticalAlignment="Center"
  2943. Content="{Binding MFC4Data.DisplayName}"
  2944. FontSize="13"
  2945. Foreground="{DynamicResource FG_Black}"/>
  2946. </Border>
  2947. <Border
  2948. Grid.Row="8"
  2949. Grid.Column="0"
  2950. Background="{DynamicResource Table_BG_Title}"
  2951. BorderBrush="{DynamicResource Table_BD}"
  2952. BorderThickness="1,0,1,1">
  2953. <Label
  2954. HorizontalAlignment="Center"
  2955. VerticalAlignment="Center"
  2956. Content="{Binding MFC5Data.DisplayName}"
  2957. FontSize="13"
  2958. Foreground="{DynamicResource FG_Black}"/>
  2959. </Border>
  2960. <Border
  2961. Grid.Row="9"
  2962. Grid.Column="0"
  2963. Background="{DynamicResource Table_BG_Title}"
  2964. BorderBrush="{DynamicResource Table_BD}"
  2965. BorderThickness="1,0,1,1">
  2966. <Label
  2967. HorizontalAlignment="Center"
  2968. VerticalAlignment="Center"
  2969. Content="{Binding MFC6Data.DisplayName}"
  2970. FontSize="13"
  2971. Foreground="{DynamicResource FG_Black}"/>
  2972. </Border>
  2973. <Border
  2974. Grid.Row="10"
  2975. Grid.Column="0"
  2976. Background="{DynamicResource Table_BG_Title}"
  2977. BorderBrush="{DynamicResource Table_BD}"
  2978. BorderThickness="1,0,1,1">
  2979. <Label
  2980. HorizontalAlignment="Center"
  2981. VerticalAlignment="Center"
  2982. Content="{Binding MFC7Data.DisplayName}"
  2983. FontSize="13"
  2984. Foreground="{DynamicResource FG_Black}"/>
  2985. </Border>
  2986. <Border
  2987. Grid.Row="11"
  2988. Grid.Column="0"
  2989. Background="{DynamicResource Table_BG_Title}"
  2990. BorderBrush="{DynamicResource Table_BD}"
  2991. BorderThickness="1,0,1,1">
  2992. <Label
  2993. HorizontalAlignment="Center"
  2994. VerticalAlignment="Center"
  2995. Content="{Binding MFC8Data.DisplayName}"
  2996. FontSize="13"
  2997. Foreground="{DynamicResource FG_Black}"/>
  2998. </Border>
  2999. <Border
  3000. Grid.Row="12"
  3001. Grid.Column="0"
  3002. Background="{DynamicResource Table_BG_Title}"
  3003. BorderBrush="{DynamicResource Table_BD}"
  3004. BorderThickness="1,0,1,1">
  3005. <Label
  3006. HorizontalAlignment="Center"
  3007. VerticalAlignment="Center"
  3008. Content="{Binding MFC9Data.DisplayName}"
  3009. FontSize="13"
  3010. Foreground="{DynamicResource FG_Black}"/>
  3011. </Border>
  3012. <Border
  3013. Grid.Row="13"
  3014. Grid.Column="0"
  3015. Background="{DynamicResource Table_BG_Title}"
  3016. BorderBrush="{DynamicResource Table_BD}"
  3017. BorderThickness="1,0,1,1">
  3018. <Label
  3019. HorizontalAlignment="Center"
  3020. VerticalAlignment="Center"
  3021. Content="{Binding MFC10Data.DisplayName}"
  3022. FontSize="13"
  3023. Foreground="{DynamicResource FG_Black}"/>
  3024. </Border>
  3025. <Border
  3026. Grid.Row="14"
  3027. Grid.Column="0"
  3028. Background="{DynamicResource Table_BG_Title}"
  3029. BorderBrush="{DynamicResource Table_BD}"
  3030. BorderThickness="1,0,1,1">
  3031. <Label
  3032. HorizontalAlignment="Center"
  3033. VerticalAlignment="Center"
  3034. Content="{Binding MFC11Data.DisplayName}"
  3035. FontSize="13"
  3036. Foreground="{DynamicResource FG_Black}"/>
  3037. </Border>
  3038. <Border
  3039. Grid.Row="15"
  3040. Grid.Column="0"
  3041. Background="{DynamicResource Table_BG_Title}"
  3042. BorderBrush="{DynamicResource Table_BD}"
  3043. BorderThickness="1,0,1,1">
  3044. <Label
  3045. HorizontalAlignment="Center"
  3046. VerticalAlignment="Center"
  3047. Content="{Binding MFC12Data.DisplayName}"
  3048. FontSize="13"
  3049. Foreground="{DynamicResource FG_Black}"/>
  3050. </Border>
  3051. <Border
  3052. Grid.Row="16"
  3053. Grid.Column="0"
  3054. Background="{DynamicResource Table_BG_Title}"
  3055. BorderBrush="{DynamicResource Table_BD}"
  3056. BorderThickness="1,0,1,1">
  3057. <Label
  3058. HorizontalAlignment="Center"
  3059. VerticalAlignment="Center"
  3060. Content="{Binding MFC13Data.DisplayName}"
  3061. FontSize="13"
  3062. Foreground="{DynamicResource FG_Black}"/>
  3063. </Border>
  3064. <Border
  3065. Grid.Row="17"
  3066. Grid.Column="0"
  3067. Background="{DynamicResource Table_BG_Title}"
  3068. BorderBrush="{DynamicResource Table_BD}"
  3069. BorderThickness="1,0,1,1">
  3070. <Label
  3071. HorizontalAlignment="Center"
  3072. VerticalAlignment="Center"
  3073. Content="{Binding MFC14Data.DisplayName}"
  3074. FontSize="13"
  3075. Foreground="{DynamicResource FG_Black}"/>
  3076. </Border>
  3077. <Border
  3078. Grid.Row="18"
  3079. Grid.Column="0"
  3080. Background="{DynamicResource Table_BG_Title}"
  3081. BorderBrush="{DynamicResource Table_BD}"
  3082. BorderThickness="1,0,1,1">
  3083. <Label
  3084. HorizontalAlignment="Center"
  3085. VerticalAlignment="Center"
  3086. Content="{Binding MFC15Data.DisplayName}"
  3087. FontSize="13"
  3088. Foreground="{DynamicResource FG_Black}"/>
  3089. </Border>
  3090. <Border
  3091. Grid.Row="19"
  3092. Grid.Column="0"
  3093. Background="{DynamicResource Table_BG_Title}"
  3094. BorderBrush="{DynamicResource Table_BD}"
  3095. BorderThickness="1,0,1,1">
  3096. <Label
  3097. HorizontalAlignment="Center"
  3098. VerticalAlignment="Center"
  3099. Content="{Binding MFC16Data.DisplayName}"
  3100. FontSize="13"
  3101. Foreground="{DynamicResource FG_Black}"/>
  3102. </Border>
  3103. <Border
  3104. Grid.Row="20"
  3105. Grid.Column="0"
  3106. Background="{DynamicResource Table_BG_Title}"
  3107. BorderBrush="{DynamicResource Table_BD}"
  3108. BorderThickness="1,0,1,1">
  3109. <Label
  3110. HorizontalAlignment="Center"
  3111. VerticalAlignment="Center"
  3112. Content="{Binding MFC51Data.DisplayName}"
  3113. FontSize="13"
  3114. Foreground="{DynamicResource FG_Black}"/>
  3115. </Border>
  3116. <Border
  3117. Grid.Row="1"
  3118. Grid.Column="1"
  3119. Background="{DynamicResource Table_BG_Content}"
  3120. BorderBrush="{DynamicResource Table_BD}"
  3121. BorderThickness="0,1,1,1">
  3122. <TextBlock
  3123. HorizontalAlignment="Center"
  3124. VerticalAlignment="Center"
  3125. FontSize="14"
  3126. Foreground="{DynamicResource FG_Black}"
  3127. Text="Actual"
  3128. TextWrapping="Wrap"/>
  3129. </Border>
  3130. <Border
  3131. Grid.Row="1"
  3132. Grid.Column="2"
  3133. Background="{DynamicResource Table_BG_Content}"
  3134. BorderBrush="{DynamicResource Table_BD}"
  3135. BorderThickness="0,1,1,1">
  3136. <TextBlock
  3137. HorizontalAlignment="Center"
  3138. VerticalAlignment="Center"
  3139. FontSize="14"
  3140. Foreground="{DynamicResource FG_Black}"
  3141. Text="Set"
  3142. TextWrapping="Wrap"/>
  3143. </Border>
  3144. <Border
  3145. Grid.Row="2"
  3146. Grid.Column="1"
  3147. Background="{DynamicResource Table_BG_Content}"
  3148. BorderBrush="{DynamicResource Table_BD}"
  3149. BorderThickness="0,0,1,1">
  3150. <TextBlock
  3151. HorizontalAlignment="Center"
  3152. VerticalAlignment="Center"
  3153. FontSize="14"
  3154. Foreground="{DynamicResource FG_Black}"
  3155. Text="{Binding VG21Data.FeedBack, StringFormat={}{0:f3}}"
  3156. TextWrapping="Wrap"/>
  3157. </Border>
  3158. <Border
  3159. Grid.Row="2"
  3160. Grid.Column="2"
  3161. Background="{DynamicResource Table_BG_Content}"
  3162. BorderBrush="{DynamicResource Table_BD}"
  3163. BorderThickness="0,0,1,1">
  3164. <TextBlock
  3165. HorizontalAlignment="Center"
  3166. VerticalAlignment="Center"
  3167. FontSize="14"
  3168. Foreground="{DynamicResource FG_Black}"
  3169. Text="{Binding VG21Data.SetPoint, StringFormat={}{0:f3}}"
  3170. TextWrapping="Wrap"/>
  3171. </Border>
  3172. <Border
  3173. Grid.Row="3"
  3174. Grid.Column="1"
  3175. Background="{DynamicResource Table_BG_Content}"
  3176. BorderBrush="{DynamicResource Table_BD}"
  3177. BorderThickness="0,0,1,1">
  3178. <TextBlock
  3179. HorizontalAlignment="Center"
  3180. VerticalAlignment="Center"
  3181. FontSize="14"
  3182. Foreground="{DynamicResource FG_Black}"
  3183. Text="{Binding VG22Data.FeedBack, StringFormat={}{0:f3}}"
  3184. TextWrapping="Wrap"/>
  3185. </Border>
  3186. <Border
  3187. Grid.Row="3"
  3188. Grid.Column="2"
  3189. Background="{DynamicResource Table_BG_Content}"
  3190. BorderBrush="{DynamicResource Table_BD}"
  3191. BorderThickness="0,0,1,1">
  3192. <TextBlock
  3193. HorizontalAlignment="Center"
  3194. VerticalAlignment="Center"
  3195. FontSize="14"
  3196. Foreground="{DynamicResource FG_Black}"
  3197. Text="{Binding VG22Data.SetPoint, StringFormat={}{0:f3}}"
  3198. TextWrapping="Wrap"/>
  3199. </Border>
  3200. <Border
  3201. Grid.Row="4"
  3202. Grid.Column="1"
  3203. Background="{DynamicResource Table_BG_Content}"
  3204. BorderBrush="{DynamicResource Table_BD}"
  3205. BorderThickness="0,0,1,1">
  3206. <TextBlock
  3207. HorizontalAlignment="Center"
  3208. VerticalAlignment="Center"
  3209. FontSize="14"
  3210. Foreground="{DynamicResource FG_Black}"
  3211. Text="{Binding MFC1Data.FeedBack, StringFormat={}{0:f1}}"
  3212. TextWrapping="Wrap"/>
  3213. </Border>
  3214. <Border
  3215. Grid.Row="4"
  3216. Grid.Column="2"
  3217. Background="{DynamicResource Table_BG_Content}"
  3218. BorderBrush="{DynamicResource Table_BD}"
  3219. BorderThickness="0,0,1,1">
  3220. <TextBlock
  3221. HorizontalAlignment="Center"
  3222. VerticalAlignment="Center"
  3223. FontSize="14"
  3224. Foreground="{DynamicResource FG_Black}"
  3225. Text="{Binding MFC1Data.SetPoint, StringFormat={}{0:f1}}"
  3226. TextWrapping="Wrap"/>
  3227. </Border>
  3228. <Border
  3229. Grid.Row="5"
  3230. Grid.Column="1"
  3231. Background="{DynamicResource Table_BG_Content}"
  3232. BorderBrush="{DynamicResource Table_BD}"
  3233. BorderThickness="0,0,1,1">
  3234. <TextBlock
  3235. HorizontalAlignment="Center"
  3236. VerticalAlignment="Center"
  3237. FontSize="14"
  3238. Foreground="{DynamicResource FG_Black}"
  3239. Text="{Binding MFC2Data.FeedBack, StringFormat={}{0:f1}}"
  3240. TextWrapping="Wrap"/>
  3241. </Border>
  3242. <Border
  3243. Grid.Row="5"
  3244. Grid.Column="2"
  3245. Background="{DynamicResource Table_BG_Content}"
  3246. BorderBrush="{DynamicResource Table_BD}"
  3247. BorderThickness="0,0,1,1">
  3248. <TextBlock
  3249. HorizontalAlignment="Center"
  3250. VerticalAlignment="Center"
  3251. FontSize="14"
  3252. Foreground="{DynamicResource FG_Black}"
  3253. Text="{Binding MFC2Data.SetPoint, StringFormat={}{0:f1}}"
  3254. TextWrapping="Wrap"/>
  3255. </Border>
  3256. <Border
  3257. Grid.Row="6"
  3258. Grid.Column="1"
  3259. Background="{DynamicResource Table_BG_Content}"
  3260. BorderBrush="{DynamicResource Table_BD}"
  3261. BorderThickness="0,0,1,1">
  3262. <TextBlock
  3263. HorizontalAlignment="Center"
  3264. VerticalAlignment="Center"
  3265. FontSize="14"
  3266. Foreground="{DynamicResource FG_Black}"
  3267. Text="{Binding MFC3Data.FeedBack, StringFormat={}{0:f1}}"
  3268. TextWrapping="Wrap"/>
  3269. </Border>
  3270. <Border
  3271. Grid.Row="6"
  3272. Grid.Column="2"
  3273. Background="{DynamicResource Table_BG_Content}"
  3274. BorderBrush="{DynamicResource Table_BD}"
  3275. BorderThickness="0,0,1,1">
  3276. <TextBlock
  3277. HorizontalAlignment="Center"
  3278. VerticalAlignment="Center"
  3279. FontSize="14"
  3280. Foreground="{DynamicResource FG_Black}"
  3281. Text="{Binding MFC3Data.SetPoint, StringFormat={}{0:f1}}"
  3282. TextWrapping="Wrap"/>
  3283. </Border>
  3284. <Border
  3285. Grid.Row="7"
  3286. Grid.Column="1"
  3287. Background="{DynamicResource Table_BG_Content}"
  3288. BorderBrush="{DynamicResource Table_BD}"
  3289. BorderThickness="0,0,1,1">
  3290. <TextBlock
  3291. HorizontalAlignment="Center"
  3292. VerticalAlignment="Center"
  3293. FontSize="14"
  3294. Foreground="{DynamicResource FG_Black}"
  3295. Text="{Binding MFC4Data.FeedBack, StringFormat={}{0:f1}}"
  3296. TextWrapping="Wrap"/>
  3297. </Border>
  3298. <Border
  3299. Grid.Row="7"
  3300. Grid.Column="2"
  3301. Background="{DynamicResource Table_BG_Content}"
  3302. BorderBrush="{DynamicResource Table_BD}"
  3303. BorderThickness="0,0,1,1">
  3304. <TextBlock
  3305. HorizontalAlignment="Center"
  3306. VerticalAlignment="Center"
  3307. FontSize="14"
  3308. Foreground="{DynamicResource FG_Black}"
  3309. Text="{Binding MFC4Data.SetPoint, StringFormat={}{0:f1}}"
  3310. TextWrapping="Wrap"/>
  3311. </Border>
  3312. <Border
  3313. Grid.Row="8"
  3314. Grid.Column="1"
  3315. Background="{DynamicResource Table_BG_Content}"
  3316. BorderBrush="{DynamicResource Table_BD}"
  3317. BorderThickness="0,0,1,1">
  3318. <TextBlock
  3319. HorizontalAlignment="Center"
  3320. VerticalAlignment="Center"
  3321. FontSize="14"
  3322. Foreground="{DynamicResource FG_Black}"
  3323. Text="{Binding MFC5Data.FeedBack, StringFormat={}{0:f1}}"
  3324. TextWrapping="Wrap"/>
  3325. </Border>
  3326. <Border
  3327. Grid.Row="8"
  3328. Grid.Column="2"
  3329. Background="{DynamicResource Table_BG_Content}"
  3330. BorderBrush="{DynamicResource Table_BD}"
  3331. BorderThickness="0,0,1,1">
  3332. <TextBlock
  3333. HorizontalAlignment="Center"
  3334. VerticalAlignment="Center"
  3335. FontSize="14"
  3336. Foreground="{DynamicResource FG_Black}"
  3337. Text="{Binding MFC5Data.SetPoint, StringFormat={}{0:f1}}"
  3338. TextWrapping="Wrap"/>
  3339. </Border>
  3340. <Border
  3341. Grid.Row="9"
  3342. Grid.Column="1"
  3343. Background="{DynamicResource Table_BG_Content}"
  3344. BorderBrush="{DynamicResource Table_BD}"
  3345. BorderThickness="0,0,1,1">
  3346. <TextBlock
  3347. HorizontalAlignment="Center"
  3348. VerticalAlignment="Center"
  3349. FontSize="14"
  3350. Foreground="{DynamicResource FG_Black}"
  3351. Text="{Binding MFC6Data.FeedBack, StringFormat={}{0:f1}}"
  3352. TextWrapping="Wrap"/>
  3353. </Border>
  3354. <Border
  3355. Grid.Row="9"
  3356. Grid.Column="2"
  3357. Background="{DynamicResource Table_BG_Content}"
  3358. BorderBrush="{DynamicResource Table_BD}"
  3359. BorderThickness="0,0,1,1">
  3360. <TextBlock
  3361. HorizontalAlignment="Center"
  3362. VerticalAlignment="Center"
  3363. FontSize="14"
  3364. Foreground="{DynamicResource FG_Black}"
  3365. Text="{Binding MFC6Data.SetPoint, StringFormat={}{0:f1}}"
  3366. TextWrapping="Wrap"/>
  3367. </Border>
  3368. <Border
  3369. Grid.Row="10"
  3370. Grid.Column="1"
  3371. Background="{DynamicResource Table_BG_Content}"
  3372. BorderBrush="{DynamicResource Table_BD}"
  3373. BorderThickness="0,0,1,1">
  3374. <TextBlock
  3375. HorizontalAlignment="Center"
  3376. VerticalAlignment="Center"
  3377. FontSize="14"
  3378. Foreground="{DynamicResource FG_Black}"
  3379. Text="{Binding MFC7Data.FeedBack, StringFormat={}{0:f1}}"
  3380. TextWrapping="Wrap"/>
  3381. </Border>
  3382. <Border
  3383. Grid.Row="10"
  3384. Grid.Column="2"
  3385. Background="{DynamicResource Table_BG_Content}"
  3386. BorderBrush="{DynamicResource Table_BD}"
  3387. BorderThickness="0,0,1,1">
  3388. <TextBlock
  3389. HorizontalAlignment="Center"
  3390. VerticalAlignment="Center"
  3391. FontSize="14"
  3392. Foreground="{DynamicResource FG_Black}"
  3393. Text="{Binding MFC7Data.SetPoint, StringFormat={}{0:f1}}"
  3394. TextWrapping="Wrap"/>
  3395. </Border>
  3396. <Border
  3397. Grid.Row="11"
  3398. Grid.Column="1"
  3399. Background="{DynamicResource Table_BG_Content}"
  3400. BorderBrush="{DynamicResource Table_BD}"
  3401. BorderThickness="0,0,1,1">
  3402. <TextBlock
  3403. HorizontalAlignment="Center"
  3404. VerticalAlignment="Center"
  3405. FontSize="14"
  3406. Foreground="{DynamicResource FG_Black}"
  3407. Text="{Binding MFC8Data.FeedBack, StringFormat={}{0:f1}}"
  3408. TextWrapping="Wrap"/>
  3409. </Border>
  3410. <Border
  3411. Grid.Row="11"
  3412. Grid.Column="2"
  3413. Background="{DynamicResource Table_BG_Content}"
  3414. BorderBrush="{DynamicResource Table_BD}"
  3415. BorderThickness="0,0,1,1">
  3416. <TextBlock
  3417. HorizontalAlignment="Center"
  3418. VerticalAlignment="Center"
  3419. FontSize="14"
  3420. Foreground="{DynamicResource FG_Black}"
  3421. Text="{Binding MFC8Data.SetPoint, StringFormat={}{0:f1}}"
  3422. TextWrapping="Wrap"/>
  3423. </Border>
  3424. <Border
  3425. Grid.Row="12"
  3426. Grid.Column="1"
  3427. Background="{DynamicResource Table_BG_Content}"
  3428. BorderBrush="{DynamicResource Table_BD}"
  3429. BorderThickness="0,0,1,1">
  3430. <TextBlock
  3431. HorizontalAlignment="Center"
  3432. VerticalAlignment="Center"
  3433. FontSize="14"
  3434. Foreground="{DynamicResource FG_Black}"
  3435. Text="{Binding MFC9Data.FeedBack, StringFormat={}{0:f1}}"
  3436. TextWrapping="Wrap"/>
  3437. </Border>
  3438. <Border
  3439. Grid.Row="12"
  3440. Grid.Column="2"
  3441. Background="{DynamicResource Table_BG_Content}"
  3442. BorderBrush="{DynamicResource Table_BD}"
  3443. BorderThickness="0,0,1,1">
  3444. <TextBlock
  3445. HorizontalAlignment="Center"
  3446. VerticalAlignment="Center"
  3447. FontSize="14"
  3448. Foreground="{DynamicResource FG_Black}"
  3449. Text="{Binding MFC9Data.SetPoint, StringFormat={}{0:f1}}"
  3450. TextWrapping="Wrap"/>
  3451. </Border>
  3452. <Border
  3453. Grid.Row="13"
  3454. Grid.Column="1"
  3455. Background="{DynamicResource Table_BG_Content}"
  3456. BorderBrush="{DynamicResource Table_BD}"
  3457. BorderThickness="0,0,1,1">
  3458. <TextBlock
  3459. HorizontalAlignment="Center"
  3460. VerticalAlignment="Center"
  3461. FontSize="14"
  3462. Foreground="{DynamicResource FG_Black}"
  3463. Text="{Binding MFC10Data.FeedBack, StringFormat={}{0:f1}}"
  3464. TextWrapping="Wrap"/>
  3465. </Border>
  3466. <Border
  3467. Grid.Row="13"
  3468. Grid.Column="2"
  3469. Background="{DynamicResource Table_BG_Content}"
  3470. BorderBrush="{DynamicResource Table_BD}"
  3471. BorderThickness="0,0,1,1">
  3472. <TextBlock
  3473. HorizontalAlignment="Center"
  3474. VerticalAlignment="Center"
  3475. FontSize="14"
  3476. Foreground="{DynamicResource FG_Black}"
  3477. Text="{Binding MFC10Data.SetPoint, StringFormat={}{0:f1}}"
  3478. TextWrapping="Wrap"/>
  3479. </Border>
  3480. <Border
  3481. Grid.Row="14"
  3482. Grid.Column="1"
  3483. Background="{DynamicResource Table_BG_Content}"
  3484. BorderBrush="{DynamicResource Table_BD}"
  3485. BorderThickness="0,0,1,1">
  3486. <TextBlock
  3487. HorizontalAlignment="Center"
  3488. VerticalAlignment="Center"
  3489. FontSize="14"
  3490. Foreground="{DynamicResource FG_Black}"
  3491. Text="{Binding MFC11Data.FeedBack, StringFormat={}{0:f1}}"
  3492. TextWrapping="Wrap"/>
  3493. </Border>
  3494. <Border
  3495. Grid.Row="14"
  3496. Grid.Column="2"
  3497. Background="{DynamicResource Table_BG_Content}"
  3498. BorderBrush="{DynamicResource Table_BD}"
  3499. BorderThickness="0,0,1,1">
  3500. <TextBlock
  3501. HorizontalAlignment="Center"
  3502. VerticalAlignment="Center"
  3503. FontSize="14"
  3504. Foreground="{DynamicResource FG_Black}"
  3505. Text="{Binding MFC11Data.SetPoint, StringFormat={}{0:f1}}"
  3506. TextWrapping="Wrap"/>
  3507. </Border>
  3508. <Border
  3509. Grid.Row="15"
  3510. Grid.Column="1"
  3511. Background="{DynamicResource Table_BG_Content}"
  3512. BorderBrush="{DynamicResource Table_BD}"
  3513. BorderThickness="0,0,1,1">
  3514. <TextBlock
  3515. HorizontalAlignment="Center"
  3516. VerticalAlignment="Center"
  3517. FontSize="14"
  3518. Foreground="{DynamicResource FG_Black}"
  3519. Text="{Binding MFC12Data.FeedBack, StringFormat={}{0:f1}}"
  3520. TextWrapping="Wrap"/>
  3521. </Border>
  3522. <Border
  3523. Grid.Row="15"
  3524. Grid.Column="2"
  3525. Background="{DynamicResource Table_BG_Content}"
  3526. BorderBrush="{DynamicResource Table_BD}"
  3527. BorderThickness="0,0,1,1">
  3528. <TextBlock
  3529. HorizontalAlignment="Center"
  3530. VerticalAlignment="Center"
  3531. FontSize="14"
  3532. Foreground="{DynamicResource FG_Black}"
  3533. Text="{Binding MFC12Data.SetPoint, StringFormat={}{0:f1}}"
  3534. TextWrapping="Wrap"/>
  3535. </Border>
  3536. <Border
  3537. Grid.Row="16"
  3538. Grid.Column="1"
  3539. Background="{DynamicResource Table_BG_Content}"
  3540. BorderBrush="{DynamicResource Table_BD}"
  3541. BorderThickness="0,0,1,1">
  3542. <TextBlock
  3543. HorizontalAlignment="Center"
  3544. VerticalAlignment="Center"
  3545. FontSize="14"
  3546. Foreground="{DynamicResource FG_Black}"
  3547. Text="{Binding MFC13Data.FeedBack, StringFormat={}{0:f1}}"
  3548. TextWrapping="Wrap"/>
  3549. </Border>
  3550. <Border
  3551. Grid.Row="16"
  3552. Grid.Column="2"
  3553. Background="{DynamicResource Table_BG_Content}"
  3554. BorderBrush="{DynamicResource Table_BD}"
  3555. BorderThickness="0,0,1,1">
  3556. <TextBlock
  3557. HorizontalAlignment="Center"
  3558. VerticalAlignment="Center"
  3559. FontSize="14"
  3560. Foreground="{DynamicResource FG_Black}"
  3561. Text="{Binding MFC13Data.SetPoint, StringFormat={}{0:f1}}"
  3562. TextWrapping="Wrap"/>
  3563. </Border>
  3564. <Border
  3565. Grid.Row="17"
  3566. Grid.Column="1"
  3567. Background="{DynamicResource Table_BG_Content}"
  3568. BorderBrush="{DynamicResource Table_BD}"
  3569. BorderThickness="0,0,1,1">
  3570. <TextBlock
  3571. HorizontalAlignment="Center"
  3572. VerticalAlignment="Center"
  3573. FontSize="14"
  3574. Foreground="{DynamicResource FG_Black}"
  3575. Text="{Binding MFC14Data.FeedBack, StringFormat={}{0:f1}}"
  3576. TextWrapping="Wrap"/>
  3577. </Border>
  3578. <Border
  3579. Grid.Row="17"
  3580. Grid.Column="2"
  3581. Background="{DynamicResource Table_BG_Content}"
  3582. BorderBrush="{DynamicResource Table_BD}"
  3583. BorderThickness="0,0,1,1">
  3584. <TextBlock
  3585. HorizontalAlignment="Center"
  3586. VerticalAlignment="Center"
  3587. FontSize="14"
  3588. Foreground="{DynamicResource FG_Black}"
  3589. Text="{Binding MFC14Data.SetPoint, StringFormat={}{0:f1}}"
  3590. TextWrapping="Wrap"/>
  3591. </Border>
  3592. <Border
  3593. Grid.Row="18"
  3594. Grid.Column="1"
  3595. Background="{DynamicResource Table_BG_Content}"
  3596. BorderBrush="{DynamicResource Table_BD}"
  3597. BorderThickness="0,0,1,1">
  3598. <TextBlock
  3599. HorizontalAlignment="Center"
  3600. VerticalAlignment="Center"
  3601. FontSize="14"
  3602. Foreground="{DynamicResource FG_Black}"
  3603. Text="{Binding MFC15Data.FeedBack, StringFormat={}{0:f1}}"
  3604. TextWrapping="Wrap"/>
  3605. </Border>
  3606. <Border
  3607. Grid.Row="18"
  3608. Grid.Column="2"
  3609. Background="{DynamicResource Table_BG_Content}"
  3610. BorderBrush="{DynamicResource Table_BD}"
  3611. BorderThickness="0,0,1,1">
  3612. <TextBlock
  3613. HorizontalAlignment="Center"
  3614. VerticalAlignment="Center"
  3615. FontSize="14"
  3616. Foreground="{DynamicResource FG_Black}"
  3617. Text="{Binding MFC15Data.SetPoint, StringFormat={}{0:f1}}"
  3618. TextWrapping="Wrap"/>
  3619. </Border>
  3620. <Border
  3621. Grid.Row="19"
  3622. Grid.Column="1"
  3623. Background="{DynamicResource Table_BG_Content}"
  3624. BorderBrush="{DynamicResource Table_BD}"
  3625. BorderThickness="0,0,1,1">
  3626. <TextBlock
  3627. HorizontalAlignment="Center"
  3628. VerticalAlignment="Center"
  3629. FontSize="14"
  3630. Foreground="{DynamicResource FG_Black}"
  3631. Text="{Binding MFC16Data.FeedBack, StringFormat={}{0:f1}}"
  3632. TextWrapping="Wrap"/>
  3633. </Border>
  3634. <Border
  3635. Grid.Row="19"
  3636. Grid.Column="2"
  3637. Background="{DynamicResource Table_BG_Content}"
  3638. BorderBrush="{DynamicResource Table_BD}"
  3639. BorderThickness="0,0,1,1">
  3640. <TextBlock
  3641. HorizontalAlignment="Center"
  3642. VerticalAlignment="Center"
  3643. FontSize="14"
  3644. Foreground="{DynamicResource FG_Black}"
  3645. Text="{Binding MFC16Data.SetPoint, StringFormat={}{0:f1}}"
  3646. TextWrapping="Wrap"/>
  3647. </Border>
  3648. <Border
  3649. Grid.Row="20"
  3650. Grid.Column="1"
  3651. Background="{DynamicResource Table_BG_Content}"
  3652. BorderBrush="{DynamicResource Table_BD}"
  3653. BorderThickness="0,0,1,1">
  3654. <TextBlock
  3655. HorizontalAlignment="Center"
  3656. VerticalAlignment="Center"
  3657. FontSize="14"
  3658. Foreground="{DynamicResource FG_Black}"
  3659. Text="{Binding MFC51Data.FeedBack, StringFormat={}{0:f1}}"
  3660. TextWrapping="Wrap"/>
  3661. </Border>
  3662. <Border
  3663. Grid.Row="20"
  3664. Grid.Column="2"
  3665. Background="{DynamicResource Table_BG_Content}"
  3666. BorderBrush="{DynamicResource Table_BD}"
  3667. BorderThickness="0,0,1,1">
  3668. <TextBlock
  3669. HorizontalAlignment="Center"
  3670. VerticalAlignment="Center"
  3671. FontSize="14"
  3672. Foreground="{DynamicResource FG_Black}"
  3673. Text="{Binding MFC51Data.SetPoint, StringFormat={}{0:f1}}"
  3674. TextWrapping="Wrap"/>
  3675. </Border>
  3676. <Label
  3677. Grid.Row="2"
  3678. Grid.Column="3"
  3679. Content="{Binding DefaultUnit}"/>
  3680. <Label
  3681. Grid.Row="3"
  3682. Grid.Column="3"
  3683. Content="{Binding DefaultUnit}"/>
  3684. <Label
  3685. Grid.Row="4"
  3686. Grid.Column="3"
  3687. Content="{Binding MFC1Data.Unit}"/>
  3688. <Label
  3689. Grid.Row="5"
  3690. Grid.Column="3"
  3691. Content="{Binding MFC2Data.Unit}"/>
  3692. <Label
  3693. Grid.Row="6"
  3694. Grid.Column="3"
  3695. Content="{Binding MFC3Data.Unit}"/>
  3696. <Label
  3697. Grid.Row="7"
  3698. Grid.Column="3"
  3699. Content="{Binding MFC4Data.Unit}"/>
  3700. <Label
  3701. Grid.Row="8"
  3702. Grid.Column="3"
  3703. Content="{Binding MFC5Data.Unit}"/>
  3704. <Label
  3705. Grid.Row="9"
  3706. Grid.Column="3"
  3707. Content="{Binding MFC6Data.Unit}"/>
  3708. <Label
  3709. Grid.Row="10"
  3710. Grid.Column="3"
  3711. Content="{Binding MFC7Data.Unit}"/>
  3712. <Label
  3713. Grid.Row="11"
  3714. Grid.Column="3"
  3715. Content="{Binding MFC8Data.Unit}"/>
  3716. <Label
  3717. Grid.Row="12"
  3718. Grid.Column="3"
  3719. Content="{Binding MFC9Data.Unit}"/>
  3720. <Label
  3721. Grid.Row="13"
  3722. Grid.Column="3"
  3723. Content="{Binding MFC10Data.Unit}"/>
  3724. <Label
  3725. Grid.Row="14"
  3726. Grid.Column="3"
  3727. Content="{Binding MFC11Data.Unit}"/>
  3728. <Label
  3729. Grid.Row="15"
  3730. Grid.Column="3"
  3731. Content="{Binding MFC12Data.Unit}"/>
  3732. <Label
  3733. Grid.Row="16"
  3734. Grid.Column="3"
  3735. Content="{Binding MFC13Data.Unit}"/>
  3736. <Label
  3737. Grid.Row="17"
  3738. Grid.Column="3"
  3739. Content="{Binding MFC14Data.Unit}"/>
  3740. <Label
  3741. Grid.Row="18"
  3742. Grid.Column="3"
  3743. Content="{Binding MFC15Data.Unit}"/>
  3744. <Label
  3745. Grid.Row="19"
  3746. Grid.Column="3"
  3747. Content="{Binding MFC16Data.Unit}"/>
  3748. <Label
  3749. Grid.Row="20"
  3750. Grid.Column="3"
  3751. Content="{Binding MFC51Data.Unit}"/>
  3752. <Grid.Resources>
  3753. <Style TargetType="Label">
  3754. <Setter Property="HorizontalContentAlignment" Value="Left"/>
  3755. <Setter Property="VerticalContentAlignment" Value="Center"/>
  3756. </Style>
  3757. </Grid.Resources>
  3758. </Grid>
  3759. </Canvas>
  3760. </ContentControl>
  3761. <i:Interaction.Triggers>
  3762. <i:EventTrigger EventName="Click">
  3763. <cal:ActionMessage MethodName="SwitchPage">
  3764. <cal:Parameter Value="Gas"/>
  3765. </cal:ActionMessage>
  3766. </i:EventTrigger>
  3767. </i:Interaction.Triggers>
  3768. </Button>
  3769. <Button
  3770. Grid.Row="0"
  3771. Grid.Column="0"
  3772. Margin="0,5,5,-11"
  3773. HorizontalContentAlignment="Stretch"
  3774. VerticalContentAlignment="Stretch"
  3775. Style="{StaticResource MainArea_Button}"
  3776. Visibility="{Binding IsELKVisibility}">
  3777. <ContentControl>
  3778. <Canvas>
  3779. <DataGrid
  3780. Width="250"
  3781. CanUserAddRows="False"
  3782. HorizontalScrollBarVisibility="Disabled"
  3783. IsHitTestVisible="False"
  3784. ItemsSource="{Binding GasDataList, Mode=OneWay, UpdateSourceTrigger=PropertyChanged}"
  3785. VerticalScrollBarVisibility="Disabled"
  3786. Visibility="{Binding IsPMAVisibility}">
  3787. <DataGrid.Columns>
  3788. <DataGridTemplateColumn
  3789. Width="80"
  3790. CanUserReorder="False"
  3791. CanUserResize="False"
  3792. CanUserSort="True"
  3793. IsReadOnly="True">
  3794. <DataGridTemplateColumn.HeaderTemplate>
  3795. <DataTemplate>
  3796. <Canvas Height="30">
  3797. <TextBlock
  3798. Canvas.Left="40"
  3799. Margin="0,5,0,0"
  3800. HorizontalAlignment="Center"
  3801. FontSize="16"
  3802. Style="{StaticResource TextBlock_Title}"
  3803. Text="Gas"/>
  3804. <Image Height="30" Source="/FurnaceUI;component/Resources/images/icons/Gas44.png"/>
  3805. </Canvas>
  3806. </DataTemplate>
  3807. </DataGridTemplateColumn.HeaderTemplate>
  3808. <DataGridColumn.HeaderStyle>
  3809. <Style TargetType="DataGridColumnHeader">
  3810. <Setter Property="BorderThickness" Value="0"/>
  3811. <Setter Property="Background" Value="{StaticResource Area_BG_2}"/>
  3812. </Style>
  3813. </DataGridColumn.HeaderStyle>
  3814. <DataGridTemplateColumn.CellTemplate>
  3815. <DataTemplate>
  3816. <Border
  3817. Grid.Row="2"
  3818. Grid.Column="0"
  3819. Background="{DynamicResource Table_BG_Title}"
  3820. BorderBrush="{DynamicResource Table_BD}">
  3821. <TextBlock
  3822. HorizontalAlignment="Center"
  3823. VerticalAlignment="Center"
  3824. Foreground="{DynamicResource FG_Black}"
  3825. Text="{Binding DisplayName}"
  3826. TextWrapping="Wrap"/>
  3827. </Border>
  3828. </DataTemplate>
  3829. </DataGridTemplateColumn.CellTemplate>
  3830. </DataGridTemplateColumn>
  3831. <DataGridTemplateColumn
  3832. Width="60"
  3833. CanUserReorder="True"
  3834. CanUserResize="False"
  3835. CanUserSort="True"
  3836. IsReadOnly="True">
  3837. <DataGridTemplateColumn.HeaderTemplate>
  3838. <DataTemplate>
  3839. <TextBlock
  3840. Margin="10,0,0,0"
  3841. VerticalAlignment="Center"
  3842. Text="Actual"
  3843. TextAlignment="Center"/>
  3844. </DataTemplate>
  3845. </DataGridTemplateColumn.HeaderTemplate>
  3846. <DataGridColumn.HeaderStyle>
  3847. <Style TargetType="DataGridColumnHeader">
  3848. <Setter Property="BorderBrush" Value="Black"/>
  3849. <Setter Property="BorderThickness" Value="1,0,1,0"/>
  3850. <Setter Property="Background" Value="{StaticResource Area_BG_2}"/>
  3851. </Style>
  3852. </DataGridColumn.HeaderStyle>
  3853. <DataGridTemplateColumn.CellTemplate>
  3854. <DataTemplate>
  3855. <Border
  3856. Grid.Row="2"
  3857. Grid.Column="1"
  3858. Background="{DynamicResource Table_BG_Content}"
  3859. BorderBrush="{DynamicResource Table_BD}">
  3860. <TextBlock
  3861. HorizontalAlignment="Center"
  3862. VerticalAlignment="Center"
  3863. FontSize="16"
  3864. Foreground="{DynamicResource FG_Black}"
  3865. Text="{Binding FeedBack, StringFormat={}{0:f1}}"
  3866. TextWrapping="Wrap"/>
  3867. </Border>
  3868. </DataTemplate>
  3869. </DataGridTemplateColumn.CellTemplate>
  3870. </DataGridTemplateColumn>
  3871. <DataGridTemplateColumn
  3872. Width="60"
  3873. CanUserReorder="False"
  3874. CanUserResize="False"
  3875. CanUserSort="True"
  3876. IsReadOnly="True">
  3877. <DataGridTemplateColumn.HeaderTemplate>
  3878. <DataTemplate>
  3879. <TextBlock
  3880. Margin="10,0,0,0"
  3881. VerticalAlignment="Center"
  3882. Text="Set"
  3883. TextAlignment="Center"/>
  3884. </DataTemplate>
  3885. </DataGridTemplateColumn.HeaderTemplate>
  3886. <DataGridColumn.HeaderStyle>
  3887. <Style TargetType="DataGridColumnHeader">
  3888. <Setter Property="BorderBrush" Value="Black"/>
  3889. <Setter Property="BorderThickness" Value="0,0,1,0"/>
  3890. <Setter Property="Background" Value="{StaticResource Area_BG_2}"/>
  3891. </Style>
  3892. </DataGridColumn.HeaderStyle>
  3893. <DataGridTemplateColumn.CellTemplate>
  3894. <DataTemplate>
  3895. <Border
  3896. Grid.Row="2"
  3897. Grid.Column="1"
  3898. Background="{DynamicResource Table_BG_Content}"
  3899. BorderBrush="{DynamicResource Table_BD}">
  3900. <TextBlock
  3901. HorizontalAlignment="Center"
  3902. VerticalAlignment="Center"
  3903. FontSize="16"
  3904. Foreground="{DynamicResource FG_Black}"
  3905. Text="{Binding SetPoint, StringFormat={}{0:f1}}"
  3906. TextWrapping="Wrap"/>
  3907. </Border>
  3908. </DataTemplate>
  3909. </DataGridTemplateColumn.CellTemplate>
  3910. </DataGridTemplateColumn>
  3911. <DataGridTemplateColumn
  3912. Width="50"
  3913. CanUserReorder="False"
  3914. CanUserResize="False"
  3915. CanUserSort="True"
  3916. IsReadOnly="True">
  3917. <DataGridTemplateColumn.HeaderStyle>
  3918. <Style TargetType="DataGridColumnHeader">
  3919. <Setter Property="BorderBrush" Value="{StaticResource Area_BG_2}"/>
  3920. <Setter Property="BorderThickness" Value="0"/>
  3921. <Setter Property="Background" Value="{StaticResource Area_BG_2}"/>
  3922. </Style>
  3923. </DataGridTemplateColumn.HeaderStyle>
  3924. <DataGridTemplateColumn.CellTemplate>
  3925. <DataTemplate>
  3926. <Border
  3927. Grid.Row="2"
  3928. Grid.Column="1"
  3929. Background="{DynamicResource Table_BG_Content}"
  3930. BorderBrush="{DynamicResource Table_BD}">
  3931. <TextBlock
  3932. HorizontalAlignment="Center"
  3933. VerticalAlignment="Center"
  3934. Foreground="{DynamicResource FG_Black}"
  3935. Text="{Binding Unit}"
  3936. TextWrapping="Wrap"/>
  3937. </Border>
  3938. </DataTemplate>
  3939. </DataGridTemplateColumn.CellTemplate>
  3940. </DataGridTemplateColumn>
  3941. </DataGrid.Columns>
  3942. <DataGrid.RowStyle>
  3943. <Style TargetType="DataGridRow">
  3944. <!--<Setter Property="Height" Value="{Binding Value, UpdateSourceTrigger=PropertyChanged}"/>-->
  3945. <Setter Property="MaxHeight" Value="25"/>
  3946. </Style>
  3947. </DataGrid.RowStyle>
  3948. <!--<i:Interaction.Triggers>
  3949. <i:EventTrigger EventName="PreviewMouseUp">
  3950. <cal:ActionMessage MethodName="SwitchPage">
  3951. <cal:Parameter Value="Gas"/>
  3952. </cal:ActionMessage>
  3953. </i:EventTrigger>
  3954. </i:Interaction.Triggers>-->
  3955. </DataGrid>
  3956. </Canvas>
  3957. </ContentControl>
  3958. <i:Interaction.Triggers>
  3959. <i:EventTrigger EventName="Click">
  3960. <cal:ActionMessage MethodName="SwitchPage">
  3961. <cal:Parameter Value="Gas"/>
  3962. </cal:ActionMessage>
  3963. </i:EventTrigger>
  3964. </i:Interaction.Triggers>
  3965. </Button>
  3966. <Button
  3967. Grid.Row="0"
  3968. Grid.Column="1"
  3969. Margin="0,5,0,-11"
  3970. HorizontalContentAlignment="Stretch"
  3971. VerticalContentAlignment="Stretch"
  3972. Style="{StaticResource MainArea_Button}">
  3973. <ContentControl>
  3974. <Canvas>
  3975. <TextBlock
  3976. Canvas.Left="60"
  3977. HorizontalAlignment="Center"
  3978. VerticalAlignment="Bottom"
  3979. FontSize="16"
  3980. Style="{StaticResource TextBlock_Title}"
  3981. Text="N2 Purge"/>
  3982. <Image
  3983. Canvas.Left="0"
  3984. Width="40"
  3985. Source="/FurnaceUI;component/Resources/images/icons/Valve44.png"/>
  3986. <Grid Canvas.Top="45" Height="420">
  3987. <Grid.RowDefinitions>
  3988. <RowDefinition/>
  3989. <RowDefinition/>
  3990. <RowDefinition/>
  3991. <RowDefinition/>
  3992. <RowDefinition/>
  3993. </Grid.RowDefinitions>
  3994. <Grid Grid.Row="0" Width="255">
  3995. <Grid.RowDefinitions>
  3996. <RowDefinition/>
  3997. <RowDefinition/>
  3998. </Grid.RowDefinitions>
  3999. <TextBlock
  4000. Grid.ColumnSpan="2"
  4001. Style="{StaticResource TextBlock_Grid}"
  4002. Text="N2Purge Status"/>
  4003. <Border
  4004. Grid.Row="1"
  4005. Margin="0,0,-5,0"
  4006. Background="#DAE5F1"
  4007. BorderBrush="Gray"
  4008. BorderThickness="1,1,1,1">
  4009. <TextBlock
  4010. HorizontalAlignment="Center"
  4011. VerticalAlignment="Center"
  4012. Background="#DAE5F1"
  4013. IsEnabled="False"/>
  4014. </Border>
  4015. </Grid>
  4016. <Grid Grid.Row="1">
  4017. <Grid.ColumnDefinitions>
  4018. <ColumnDefinition Width="24*"/>
  4019. <ColumnDefinition Width="61*"/>
  4020. </Grid.ColumnDefinitions>
  4021. <Grid.RowDefinitions>
  4022. <RowDefinition/>
  4023. <RowDefinition/>
  4024. </Grid.RowDefinitions>
  4025. <TextBlock
  4026. Grid.ColumnSpan="2"
  4027. Margin="0,0,2,0"
  4028. Style="{StaticResource TextBlock_Grid}"
  4029. Text="O2 Density CtrlStatus"/>
  4030. <Border
  4031. Grid.Row="1"
  4032. Grid.ColumnSpan="2"
  4033. Background="#DAE5F1"
  4034. BorderBrush="Gray"
  4035. BorderThickness="1,1,1,1">
  4036. <TextBlock
  4037. HorizontalAlignment="Center"
  4038. VerticalAlignment="Center"
  4039. Background="#DAE5F1"
  4040. IsEnabled="False"/>
  4041. </Border>
  4042. </Grid>
  4043. <Grid Grid.Row="2" Grid.RowSpan="2">
  4044. <Grid.RowDefinitions>
  4045. <RowDefinition/>
  4046. <RowDefinition/>
  4047. <RowDefinition/>
  4048. <RowDefinition/>
  4049. </Grid.RowDefinitions>
  4050. <TextBlock Style="{StaticResource TextBlock_Grid}" Text="O2 Density(ppm)"/>
  4051. <Border
  4052. Grid.Row="1"
  4053. Grid.ColumnSpan="2"
  4054. Background="#DAE5F1"
  4055. BorderBrush="Gray"
  4056. BorderThickness="1,1,1,1">
  4057. <TextBlock
  4058. Margin="4"
  4059. HorizontalAlignment="Center"
  4060. VerticalAlignment="Center"
  4061. Background="#DAE5F1"
  4062. IsEnabled="False"/>
  4063. </Border>
  4064. <StackPanel
  4065. Grid.Row="2"
  4066. Margin="0,2,0,2"
  4067. HorizontalAlignment="Center"
  4068. Orientation="Horizontal">
  4069. <Border
  4070. Width="133"
  4071. Background="#DAE5F1"
  4072. BorderBrush="Gray"
  4073. BorderThickness="1,1,1,1">
  4074. <TextBlock
  4075. Width="100"
  4076. Margin="2"
  4077. HorizontalAlignment="Center"
  4078. VerticalAlignment="Center"
  4079. IsEnabled="False"/>
  4080. </Border>
  4081. <TextBlock Margin="10,10,10,0" Text="/"/>
  4082. <Border
  4083. Background="#DAE5F1"
  4084. BorderBrush="Gray"
  4085. BorderThickness="1,1,1,1">
  4086. <TextBlock
  4087. Width="100"
  4088. Margin="2"
  4089. HorizontalAlignment="Center"
  4090. VerticalAlignment="Center"
  4091. IsEnabled="False"/>
  4092. </Border>
  4093. </StackPanel>
  4094. <StackPanel
  4095. Grid.Row="4"
  4096. HorizontalAlignment="Center"
  4097. Orientation="Horizontal">
  4098. <Border
  4099. Background="#DAE5F1"
  4100. BorderBrush="Gray"
  4101. BorderThickness="1,1,0,1">
  4102. <TextBlock Width="83" IsEnabled="False"/>
  4103. </Border>
  4104. <Border
  4105. Background="#DAE5F1"
  4106. BorderBrush="Gray"
  4107. BorderThickness="1,1,0,1">
  4108. <TextBlock
  4109. Width="50"
  4110. Margin="4,0,4,0"
  4111. IsEnabled="False"/>
  4112. </Border>
  4113. <Border
  4114. Background="#DAE5F1"
  4115. BorderBrush="Gray"
  4116. BorderThickness="1,1,0,1">
  4117. <TextBlock
  4118. Width="50"
  4119. Margin="4,0,4,0"
  4120. IsEnabled="False"/>
  4121. </Border>
  4122. <Border
  4123. Background="#DAE5F1"
  4124. BorderBrush="Gray"
  4125. BorderThickness="1,1,1,1">
  4126. <TextBlock Width="61" IsEnabled="False"/>
  4127. </Border>
  4128. </StackPanel>
  4129. </Grid>
  4130. <Grid Grid.Row="4">
  4131. <Grid.RowDefinitions>
  4132. <RowDefinition/>
  4133. <RowDefinition/>
  4134. </Grid.RowDefinitions>
  4135. <TextBlock Style="{StaticResource TextBlock_Grid}" Text="TransferRoom N2Tota(L)"/>
  4136. <StackPanel
  4137. Grid.Row="1"
  4138. Width="265"
  4139. HorizontalAlignment="Center"
  4140. Orientation="Horizontal">
  4141. <Border
  4142. Background="#DAE5F1"
  4143. BorderBrush="Gray"
  4144. BorderThickness="1,1,1,1">
  4145. <TextBlock
  4146. Width="127"
  4147. HorizontalAlignment="Center"
  4148. VerticalAlignment="Center"
  4149. IsEnabled="False"/>
  4150. </Border>
  4151. <TextBlock Margin="10,10,10,0" Text="/"/>
  4152. <Border
  4153. Background="#DAE5F1"
  4154. BorderBrush="Gray"
  4155. BorderThickness="1,1,1,1">
  4156. <TextBlock
  4157. Width="109"
  4158. HorizontalAlignment="Center"
  4159. VerticalAlignment="Center"
  4160. IsEnabled="False"/>
  4161. </Border>
  4162. </StackPanel>
  4163. </Grid>
  4164. </Grid>
  4165. </Canvas>
  4166. </ContentControl>
  4167. <i:Interaction.Triggers>
  4168. <i:EventTrigger EventName="Click">
  4169. <cal:ActionMessage MethodName="SwitchPage">
  4170. <cal:Parameter Value="N2Purge"/>
  4171. </cal:ActionMessage>
  4172. </i:EventTrigger>
  4173. </i:Interaction.Triggers>
  4174. </Button>
  4175. </Grid>
  4176. </Grid>
  4177. </UserControl>