StatusView.xaml 241 KB

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