N2PurgeSelectDialogView.xaml 80 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445
  1. <UserControl x:Class="FurnaceUI.Client.Dialog.N2PurgeSelectDialogView"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:FurnaceUI.Client.Dialog"
  7. mc:Ignorable="d"
  8. xmlns:ts="clr-namespace:OpenSEMI.ClientBase.Command;assembly=MECF.Framework.UI.Client" xmlns:controls="http://OpenSEMI.Ctrlib.com/presentation"
  9. d:DesignHeight="500" d:DesignWidth="320">
  10. <Grid SnapsToDevicePixels="True">
  11. <Grid Margin="10" Visibility="{Binding TransferRoomVisible}">
  12. <Grid.RowDefinitions>
  13. <RowDefinition />
  14. <RowDefinition Height="50"/>
  15. </Grid.RowDefinitions>
  16. <StackPanel Orientation="Vertical" HorizontalAlignment="Center" VerticalAlignment="Top" Width="320">
  17. <!--<Grid Height="80" Margin="2">
  18. <Grid.RowDefinitions >
  19. <RowDefinition Height="20"></RowDefinition>
  20. <RowDefinition Height="60"></RowDefinition>
  21. </Grid.RowDefinitions>
  22. <Grid.ColumnDefinitions>
  23. <ColumnDefinition></ColumnDefinition>
  24. <ColumnDefinition></ColumnDefinition>
  25. </Grid.ColumnDefinitions>
  26. <Border Grid.ColumnSpan="2" Background="{DynamicResource Area_BD}" Margin=" 0 2 0 0">
  27. <TextBlock Text="234fsgsgf"></TextBlock>
  28. </Border>
  29. <Border Grid.Column="0" Grid.Row="1" Background="{DynamicResource Area_BG}">
  30. <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
  31. <Button Content="Enable" Margin=" 0 0 15 0">
  32. </Button>
  33. <Button Content="Disable">
  34. </Button>
  35. </StackPanel>
  36. </Border>
  37. <Border Grid.Column="1" Grid.Row="1" Background="{DynamicResource Color_BD_Logoff}">
  38. <TextBlock Margin="2" TextWrapping="Wrap" Text="11111111111111111111111111111111111111111111111111111111111111111111111"></TextBlock>
  39. </Border>
  40. </Grid>-->
  41. <Grid Height="80" Margin="2" >
  42. <Grid.RowDefinitions >
  43. <RowDefinition Height="20"></RowDefinition>
  44. <RowDefinition Height="60"></RowDefinition>
  45. </Grid.RowDefinitions>
  46. <Grid.ColumnDefinitions>
  47. <ColumnDefinition></ColumnDefinition>
  48. <ColumnDefinition></ColumnDefinition>
  49. </Grid.ColumnDefinitions>
  50. <Border Grid.ColumnSpan="2" Background="{DynamicResource Area_BD}" Margin=" 0 2 0 0">
  51. <TextBlock Text="O2-Density Arrival Wait Time"></TextBlock>
  52. </Border>
  53. <Border Grid.Column="0" Grid.Row="1" Background="{DynamicResource Area_BG}">
  54. <TextBox Margin="6"></TextBox>
  55. </Border>
  56. <Border Grid.Column="1" Grid.Row="1" Background="{DynamicResource Color_BD_Logoff}">
  57. <TextBlock Margin="2" TextWrapping="Wrap" Text="Set waiting time of Transfer_Room O2_Density arrival"></TextBlock>
  58. </Border>
  59. </Grid>
  60. <Grid Height="80" Margin="2">
  61. <Grid.RowDefinitions >
  62. <RowDefinition Height="20"></RowDefinition>
  63. <RowDefinition Height="60"></RowDefinition>
  64. </Grid.RowDefinitions>
  65. <Grid.ColumnDefinitions>
  66. <ColumnDefinition></ColumnDefinition>
  67. <ColumnDefinition></ColumnDefinition>
  68. </Grid.ColumnDefinitions>
  69. <Border Grid.ColumnSpan="2" Background="{DynamicResource Area_BD}" Margin=" 0 2 0 0">
  70. <TextBlock Text="O2_Density Stable Wait Time"></TextBlock>
  71. </Border>
  72. <Border Grid.Column="0" Grid.Row="1" Background="{DynamicResource Area_BG}">
  73. <TextBox Margin="6"></TextBox>
  74. </Border>
  75. <Border Grid.Column="1" Grid.Row="1" Background="{DynamicResource Color_BD_Logoff}">
  76. <TextBlock Margin="2" TextWrapping="Wrap" Text="Set stable waiting time after Transfer-Room O2_Density arrival"></TextBlock>
  77. </Border>
  78. </Grid>
  79. <Grid Height="80" Margin="2">
  80. <Grid.RowDefinitions >
  81. <RowDefinition Height="20"></RowDefinition>
  82. <RowDefinition Height="60"></RowDefinition>
  83. </Grid.RowDefinitions>
  84. <Grid.ColumnDefinitions>
  85. <ColumnDefinition></ColumnDefinition>
  86. <ColumnDefinition></ColumnDefinition>
  87. </Grid.ColumnDefinitions>
  88. <Border Grid.ColumnSpan="2" Background="{DynamicResource Area_BD}" Margin=" 0 2 0 0">
  89. <TextBlock Text="O2_Density Check Error Command"></TextBlock>
  90. </Border>
  91. <Border Grid.Column="0" Grid.Row="1" Background="{DynamicResource Area_BG}">
  92. <TextBox Margin="6"></TextBox>
  93. </Border>
  94. <Border Grid.Column="1" Grid.Row="1" Background="{DynamicResource Color_BD_Logoff}">
  95. <TextBlock Margin="2" TextWrapping="Wrap" Text="Set Pm Command when Transfer-Room O2-Density does not arrive in time"></TextBlock>
  96. </Border>
  97. </Grid>
  98. </StackPanel>
  99. </Grid>
  100. <Grid Margin="10" Visibility="{Binding FOUPOpenVisible}">
  101. <Grid.RowDefinitions>
  102. <RowDefinition />
  103. <RowDefinition Height="50"/>
  104. </Grid.RowDefinitions>
  105. <StackPanel Orientation="Vertical" HorizontalAlignment="Center" VerticalAlignment="Top" Width="320">
  106. <!--<Grid Height="80" Margin="2">
  107. <Grid.RowDefinitions >
  108. <RowDefinition Height="20"></RowDefinition>
  109. <RowDefinition Height="60"></RowDefinition>
  110. </Grid.RowDefinitions>
  111. <Grid.ColumnDefinitions>
  112. <ColumnDefinition></ColumnDefinition>
  113. <ColumnDefinition></ColumnDefinition>
  114. </Grid.ColumnDefinitions>
  115. <Border Grid.ColumnSpan="2" Background="{DynamicResource Area_BD}" Margin=" 0 2 0 0">
  116. <TextBlock Text="234fsgsgf"></TextBlock>
  117. </Border>
  118. <Border Grid.Column="0" Grid.Row="1" Background="{DynamicResource Area_BG}">
  119. <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
  120. <Button Content="Enable" Margin=" 0 0 15 0">
  121. </Button>
  122. <Button Content="Disable">
  123. </Button>
  124. </StackPanel>
  125. </Border>
  126. <Border Grid.Column="1" Grid.Row="1" Background="{DynamicResource Color_BD_Logoff}">
  127. <TextBlock Margin="2" TextWrapping="Wrap" Text="11111111111111111111111111111111111111111111111111111111111111111111111"></TextBlock>
  128. </Border>
  129. </Grid>-->
  130. <Grid Height="80" Margin="2">
  131. <Grid.RowDefinitions >
  132. <RowDefinition Height="20"></RowDefinition>
  133. <RowDefinition Height="60"></RowDefinition>
  134. </Grid.RowDefinitions>
  135. <Grid.ColumnDefinitions>
  136. <ColumnDefinition></ColumnDefinition>
  137. <ColumnDefinition></ColumnDefinition>
  138. </Grid.ColumnDefinitions>
  139. <Border Grid.ColumnSpan="2" Background="{DynamicResource Area_BD}" Margin=" 0 2 0 0">
  140. <TextBlock Text="O2-Density Arrival Wait Time"></TextBlock>
  141. </Border>
  142. <Border Grid.Column="0" Grid.Row="1" Background="{DynamicResource Area_BG}">
  143. <TextBox Margin="6"></TextBox>
  144. </Border>
  145. <Border Grid.Column="1" Grid.Row="1" Background="{DynamicResource Color_BD_Logoff}">
  146. <TextBlock Margin="2" TextWrapping="Wrap" Text="Set waiting time of FOUP O2-Dersity arrval"></TextBlock>
  147. </Border>
  148. </Grid>
  149. <Grid Height="80" Margin="2">
  150. <Grid.RowDefinitions >
  151. <RowDefinition Height="20"></RowDefinition>
  152. <RowDefinition Height="60"></RowDefinition>
  153. </Grid.RowDefinitions>
  154. <Grid.ColumnDefinitions>
  155. <ColumnDefinition></ColumnDefinition>
  156. <ColumnDefinition></ColumnDefinition>
  157. </Grid.ColumnDefinitions>
  158. <Border Grid.ColumnSpan="2" Background="{DynamicResource Area_BD}" Margin=" 0 2 0 0">
  159. <TextBlock Text="O2_Density Stable Wait Time"></TextBlock>
  160. </Border>
  161. <Border Grid.Column="0" Grid.Row="1" Background="{DynamicResource Area_BG}">
  162. <TextBox Margin="6"></TextBox>
  163. </Border>
  164. <Border Grid.Column="1" Grid.Row="1" Background="{DynamicResource Color_BD_Logoff}">
  165. <TextBlock Margin="2" TextWrapping="Wrap" Text="Set stabillty waiting time after FOUP O2-Dersity arrival"></TextBlock>
  166. </Border>
  167. </Grid>
  168. <Grid Height="80" Margin="2">
  169. <Grid.RowDefinitions >
  170. <RowDefinition Height="20"></RowDefinition>
  171. <RowDefinition Height="60"></RowDefinition>
  172. </Grid.RowDefinitions>
  173. <Grid.ColumnDefinitions>
  174. <ColumnDefinition></ColumnDefinition>
  175. <ColumnDefinition></ColumnDefinition>
  176. </Grid.ColumnDefinitions>
  177. <Border Grid.ColumnSpan="2" Background="{DynamicResource Area_BD}" Margin=" 0 2 0 0">
  178. <TextBlock Text="O2_Density Check Error Command"></TextBlock>
  179. </Border>
  180. <Border Grid.Column="0" Grid.Row="1" Background="{DynamicResource Area_BG}">
  181. <TextBox Margin="6"></TextBox>
  182. </Border>
  183. <Border Grid.Column="1" Grid.Row="1" Background="{DynamicResource Color_BD_Logoff}">
  184. <TextBlock Margin="2" TextWrapping="Wrap" Text="Set Pm Command when FOUP O2-Density does not arrive in time"></TextBlock>
  185. </Border>
  186. </Grid>
  187. </StackPanel>
  188. </Grid>
  189. <Grid Margin="10" Visibility="{Binding O2DetectorVisible}">
  190. <Grid.RowDefinitions>
  191. <RowDefinition />
  192. <RowDefinition Height="50"/>
  193. </Grid.RowDefinitions>
  194. <StackPanel Orientation="Vertical" HorizontalAlignment="Center" VerticalAlignment="Top" Width="320">
  195. <!--<Grid Height="80" Margin="2">
  196. <Grid.RowDefinitions >
  197. <RowDefinition Height="20"></RowDefinition>
  198. <RowDefinition Height="60"></RowDefinition>
  199. </Grid.RowDefinitions>
  200. <Grid.ColumnDefinitions>
  201. <ColumnDefinition></ColumnDefinition>
  202. <ColumnDefinition></ColumnDefinition>
  203. </Grid.ColumnDefinitions>
  204. <Border Grid.ColumnSpan="2" Background="{DynamicResource Area_BD}" Margin=" 0 2 0 0">
  205. <TextBlock Text="234fsgsgf"></TextBlock>
  206. </Border>
  207. <Border Grid.Column="0" Grid.Row="1" Background="{DynamicResource Area_BG}">
  208. <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
  209. <Button Content="Enable" Margin=" 0 0 15 0">
  210. </Button>
  211. <Button Content="Disable">
  212. </Button>
  213. </StackPanel>
  214. </Border>
  215. <Border Grid.Column="1" Grid.Row="1" Background="{DynamicResource Color_BD_Logoff}">
  216. <TextBlock Margin="2" TextWrapping="Wrap" Text="11111111111111111111111111111111111111111111111111111111111111111111111"></TextBlock>
  217. </Border>
  218. </Grid>-->
  219. <Grid Height="80" Margin="2">
  220. <Grid.RowDefinitions >
  221. <RowDefinition Height="20"></RowDefinition>
  222. <RowDefinition Height="60"></RowDefinition>
  223. </Grid.RowDefinitions>
  224. <Grid.ColumnDefinitions>
  225. <ColumnDefinition></ColumnDefinition>
  226. <ColumnDefinition></ColumnDefinition>
  227. </Grid.ColumnDefinitions>
  228. <Border Grid.ColumnSpan="2" Background="{DynamicResource Area_BD}" Margin=" 0 2 0 0">
  229. <TextBlock Text="Transfer-Room → FOUP"></TextBlock>
  230. </Border>
  231. <Border Grid.Column="0" Grid.Row="1" Background="{DynamicResource Area_BG}">
  232. <TextBox Margin="6"></TextBox>
  233. </Border>
  234. <Border Grid.Column="1" Grid.Row="1" Background="{DynamicResource Color_BD_Logoff}">
  235. <TextBlock Margin="2" TextWrapping="Wrap" Text="Set time to change detector from Trarsfer-Room to FOUP"></TextBlock>
  236. </Border>
  237. </Grid>
  238. <Grid Height="80" Margin="2">
  239. <Grid.RowDefinitions >
  240. <RowDefinition Height="20"></RowDefinition>
  241. <RowDefinition Height="60"></RowDefinition>
  242. </Grid.RowDefinitions>
  243. <Grid.ColumnDefinitions>
  244. <ColumnDefinition></ColumnDefinition>
  245. <ColumnDefinition></ColumnDefinition>
  246. </Grid.ColumnDefinitions>
  247. <Border Grid.ColumnSpan="2" Background="{DynamicResource Area_BD}" Margin=" 0 2 0 0">
  248. <TextBlock Text="FOUP → Transfer-Room"></TextBlock>
  249. </Border>
  250. <Border Grid.Column="0" Grid.Row="1" Background="{DynamicResource Area_BG}">
  251. <TextBox Margin="6"></TextBox>
  252. </Border>
  253. <Border Grid.Column="1" Grid.Row="1" Background="{DynamicResource Color_BD_Logoff}">
  254. <TextBlock Margin="2" TextWrapping="Wrap" Text="Set time to change detector from FOUP to Trarsfer-Room "></TextBlock>
  255. </Border>
  256. </Grid>
  257. <Grid Height="80" Margin="2">
  258. <Grid.RowDefinitions >
  259. <RowDefinition Height="20"></RowDefinition>
  260. <RowDefinition Height="60"></RowDefinition>
  261. </Grid.RowDefinitions>
  262. <Grid.ColumnDefinitions>
  263. <ColumnDefinition></ColumnDefinition>
  264. <ColumnDefinition></ColumnDefinition>
  265. </Grid.ColumnDefinitions>
  266. <Border Grid.ColumnSpan="2" Background="{DynamicResource Area_BD}" Margin=" 0 2 0 0">
  267. <TextBlock Text="FOUP → FOUP"></TextBlock>
  268. </Border>
  269. <Border Grid.Column="0" Grid.Row="1" Background="{DynamicResource Area_BG}">
  270. <TextBox Margin="6"></TextBox>
  271. </Border>
  272. <Border Grid.Column="1" Grid.Row="1" Background="{DynamicResource Color_BD_Logoff}">
  273. <TextBlock Margin="2" TextWrapping="Wrap" Text="Set time to change detector from FOUP to FOUP"></TextBlock>
  274. </Border>
  275. </Grid>
  276. </StackPanel>
  277. </Grid>
  278. <Grid Margin="10" Visibility="{Binding ClampOFFVisible}">
  279. <Grid.RowDefinitions>
  280. <RowDefinition />
  281. <RowDefinition Height="50"/>
  282. </Grid.RowDefinitions>
  283. <StackPanel Orientation="Vertical" HorizontalAlignment="Center" VerticalAlignment="Top" Width="320">
  284. <!--<Grid Height="80" Margin="2">
  285. <Grid.RowDefinitions >
  286. <RowDefinition Height="20"></RowDefinition>
  287. <RowDefinition Height="60"></RowDefinition>
  288. </Grid.RowDefinitions>
  289. <Grid.ColumnDefinitions>
  290. <ColumnDefinition></ColumnDefinition>
  291. <ColumnDefinition></ColumnDefinition>
  292. </Grid.ColumnDefinitions>
  293. <Border Grid.ColumnSpan="2" Background="{DynamicResource Area_BD}" Margin=" 0 2 0 0">
  294. <TextBlock Text="234fsgsgf"></TextBlock>
  295. </Border>
  296. <Border Grid.Column="0" Grid.Row="1" Background="{DynamicResource Area_BG}">
  297. <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
  298. <Button Content="Enable" Margin=" 0 0 15 0">
  299. </Button>
  300. <Button Content="Disable">
  301. </Button>
  302. </StackPanel>
  303. </Border>
  304. <Border Grid.Column="1" Grid.Row="1" Background="{DynamicResource Color_BD_Logoff}">
  305. <TextBlock Margin="2" TextWrapping="Wrap" Text="11111111111111111111111111111111111111111111111111111111111111111111111"></TextBlock>
  306. </Border>
  307. </Grid>-->
  308. <Grid Height="90" Margin="2">
  309. <Grid.RowDefinitions >
  310. <RowDefinition Height="20"></RowDefinition>
  311. <RowDefinition Height="70"></RowDefinition>
  312. </Grid.RowDefinitions>
  313. <Grid.ColumnDefinitions>
  314. <ColumnDefinition></ColumnDefinition>
  315. <ColumnDefinition></ColumnDefinition>
  316. </Grid.ColumnDefinitions>
  317. <Border Grid.ColumnSpan="2" Background="{DynamicResource Area_BD}" Margin=" 0 2 0 0">
  318. <TextBlock Text="Transfer-Room Clamp OFF Wait Time"></TextBlock>
  319. </Border>
  320. <Border Grid.Column="0" Grid.Row="1" Background="{DynamicResource Area_BG}">
  321. <TextBox Margin="6"></TextBox>
  322. </Border>
  323. <Border Grid.Column="1" Grid.Row="1" Background="{DynamicResource Color_BD_Logoff}">
  324. <TextBlock Margin="2" TextWrapping="Wrap" Text="Set waiting time from detection of ATM to Clamo OFF of Trarefer-Room"></TextBlock>
  325. </Border>
  326. </Grid>
  327. </StackPanel>
  328. </Grid>
  329. <Grid Margin="10" Visibility="{Binding FurnaceOpenVisible}">
  330. <Grid.RowDefinitions>
  331. <RowDefinition />
  332. <RowDefinition Height="50"/>
  333. </Grid.RowDefinitions>
  334. <StackPanel Orientation="Vertical" HorizontalAlignment="Center" VerticalAlignment="Top" Width="320">
  335. <Grid Height="80" Margin="2">
  336. <Grid.RowDefinitions >
  337. <RowDefinition Height="20"></RowDefinition>
  338. <RowDefinition Height="60"></RowDefinition>
  339. </Grid.RowDefinitions>
  340. <Grid.ColumnDefinitions>
  341. <ColumnDefinition></ColumnDefinition>
  342. <ColumnDefinition></ColumnDefinition>
  343. </Grid.ColumnDefinitions>
  344. <Border Grid.ColumnSpan="2" Background="{DynamicResource Area_BD}" Margin=" 0 2 0 0">
  345. <TextBlock Text="Furnace Open O2-Density Check"></TextBlock>
  346. </Border>
  347. <Border Grid.Column="0" Grid.Row="1" Background="{DynamicResource Area_BG}">
  348. <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
  349. <Button Content="Enable" Margin=" 0 0 15 0">
  350. </Button>
  351. <Button Content="Disable">
  352. </Button>
  353. </StackPanel>
  354. </Border>
  355. <Border Grid.Column="1" Grid.Row="1" Background="{DynamicResource Color_BD_Logoff}">
  356. <TextBlock Margin="2" TextWrapping="Wrap" Text="Enable O2-Density Check When Furnace is Open"></TextBlock>
  357. </Border>
  358. </Grid>
  359. <Grid Height="80" Margin="2">
  360. <Grid.RowDefinitions >
  361. <RowDefinition Height="20"></RowDefinition>
  362. <RowDefinition Height="60"></RowDefinition>
  363. </Grid.RowDefinitions>
  364. <Grid.ColumnDefinitions>
  365. <ColumnDefinition></ColumnDefinition>
  366. <ColumnDefinition></ColumnDefinition>
  367. </Grid.ColumnDefinitions>
  368. <Border Grid.ColumnSpan="2" Background="{DynamicResource Area_BD}" Margin=" 0 2 0 0">
  369. <TextBlock Text="02-Density Check Value"></TextBlock>
  370. </Border>
  371. <Border Grid.Column="0" Grid.Row="1" Background="{DynamicResource Area_BG}">
  372. <TextBox Margin="6"></TextBox>
  373. </Border>
  374. <Border Grid.Column="1" Grid.Row="1" Background="{DynamicResource Color_BD_Logoff}">
  375. <TextBlock Margin="2" TextWrapping="Wrap" Text="Set value of O2-Density Check when Furnace is open"></TextBlock>
  376. </Border>
  377. </Grid>
  378. </StackPanel>
  379. </Grid>
  380. <Grid Margin="10" Visibility="{Binding OperationCheckVisible}">
  381. <Grid.RowDefinitions>
  382. <RowDefinition />
  383. <RowDefinition Height="50"/>
  384. </Grid.RowDefinitions>
  385. <StackPanel Orientation="Vertical" HorizontalAlignment="Center" VerticalAlignment="Top" Width="320">
  386. <Grid Height="80" Margin="2">
  387. <Grid.RowDefinitions >
  388. <RowDefinition Height="20"></RowDefinition>
  389. <RowDefinition Height="60"></RowDefinition>
  390. </Grid.RowDefinitions>
  391. <Grid.ColumnDefinitions>
  392. <ColumnDefinition></ColumnDefinition>
  393. <ColumnDefinition></ColumnDefinition>
  394. </Grid.ColumnDefinitions>
  395. <Border Grid.ColumnSpan="2" Background="{DynamicResource Area_BD}" Margin=" 0 2 0 0">
  396. <TextBlock Text="N2-Purge Operation Check"></TextBlock>
  397. </Border>
  398. <Border Grid.Column="0" Grid.Row="1" Background="{DynamicResource Area_BG}">
  399. <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
  400. <Button Content="Enable" Margin=" 0 0 15 0">
  401. </Button>
  402. <Button Content="Disable">
  403. </Button>
  404. </StackPanel>
  405. </Border>
  406. <Border Grid.Column="1" Grid.Row="1" Background="{DynamicResource Color_BD_Logoff}">
  407. <TextBlock Margin="2" TextWrapping="Wrap" Text="Enalle Oreration Check when N2-Pure is started"></TextBlock>
  408. </Border>
  409. </Grid>
  410. <Grid Height="80" Margin="2">
  411. <Grid.RowDefinitions >
  412. <RowDefinition Height="20"></RowDefinition>
  413. <RowDefinition Height="60"></RowDefinition>
  414. </Grid.RowDefinitions>
  415. <Grid.ColumnDefinitions>
  416. <ColumnDefinition></ColumnDefinition>
  417. <ColumnDefinition></ColumnDefinition>
  418. </Grid.ColumnDefinitions>
  419. <Border Grid.ColumnSpan="2" Background="{DynamicResource Area_BD}" Margin=" 0 2 0 0">
  420. <TextBlock Text="02-Density Check Value"></TextBlock>
  421. </Border>
  422. <Border Grid.Column="0" Grid.Row="1" Background="{DynamicResource Area_BG}">
  423. <TextBox Margin="6"></TextBox>
  424. </Border>
  425. <Border Grid.Column="1" Grid.Row="1" Background="{DynamicResource Color_BD_Logoff}">
  426. <TextBlock Margin="2" TextWrapping="Wrap" Text="Set value of O2-Dersity of Operation Check"></TextBlock>
  427. </Border>
  428. </Grid>
  429. <Grid Height="80" Margin="2">
  430. <Grid.RowDefinitions >
  431. <RowDefinition Height="20"></RowDefinition>
  432. <RowDefinition Height="60"></RowDefinition>
  433. </Grid.RowDefinitions>
  434. <Grid.ColumnDefinitions>
  435. <ColumnDefinition></ColumnDefinition>
  436. <ColumnDefinition></ColumnDefinition>
  437. </Grid.ColumnDefinitions>
  438. <Border Grid.ColumnSpan="2" Background="{DynamicResource Area_BD}" Margin=" 0 2 0 0">
  439. <TextBlock Text="N2-Purge Operation Check Wait Time"></TextBlock>
  440. </Border>
  441. <Border Grid.Column="0" Grid.Row="1" Background="{DynamicResource Area_BG}">
  442. <TextBox Margin="6"></TextBox>
  443. </Border>
  444. <Border Grid.Column="1" Grid.Row="1" Background="{DynamicResource Color_BD_Logoff}">
  445. <TextBlock Margin="2" TextWrapping="Wrap" Text="Set waiting time of O2-Dersity arrval"></TextBlock>
  446. </Border>
  447. </Grid>
  448. <Grid Height="80" Margin="2">
  449. <Grid.RowDefinitions >
  450. <RowDefinition Height="20"></RowDefinition>
  451. <RowDefinition Height="60"></RowDefinition>
  452. </Grid.RowDefinitions>
  453. <Grid.ColumnDefinitions>
  454. <ColumnDefinition></ColumnDefinition>
  455. <ColumnDefinition></ColumnDefinition>
  456. </Grid.ColumnDefinitions>
  457. <Border Grid.ColumnSpan="2" Background="{DynamicResource Area_BD}" Margin=" 0 2 0 0">
  458. <TextBlock Text="02-Density Stable Time"></TextBlock>
  459. </Border>
  460. <Border Grid.Column="0" Grid.Row="1" Background="{DynamicResource Area_BG}">
  461. <TextBox Margin="6"></TextBox>
  462. </Border>
  463. <Border Grid.Column="1" Grid.Row="1" Background="{DynamicResource Color_BD_Logoff}">
  464. <TextBlock Margin="2" TextWrapping="Wrap" Text="Set stabllty waitingtime after C2-Dereity arrival"></TextBlock>
  465. </Border>
  466. </Grid>
  467. </StackPanel>
  468. </Grid>
  469. <Grid Margin="10" Visibility="{Binding O2DensityQuickDownVisible}">
  470. <Grid.RowDefinitions>
  471. <RowDefinition />
  472. <RowDefinition Height="50"/>
  473. </Grid.RowDefinitions>
  474. <StackPanel Orientation="Vertical" HorizontalAlignment="Center" VerticalAlignment="Top" Width="320">
  475. <Grid Height="80" Margin="2">
  476. <Grid.RowDefinitions >
  477. <RowDefinition Height="20"></RowDefinition>
  478. <RowDefinition Height="60"></RowDefinition>
  479. </Grid.RowDefinitions>
  480. <Grid.ColumnDefinitions>
  481. <ColumnDefinition></ColumnDefinition>
  482. <ColumnDefinition></ColumnDefinition>
  483. </Grid.ColumnDefinitions>
  484. <Border Grid.ColumnSpan="2" Background="{DynamicResource Area_BD}" Margin=" 0 2 0 0">
  485. <TextBlock Text="O2-Density Quick Down"></TextBlock>
  486. </Border>
  487. <Border Grid.Column="0" Grid.Row="1" Background="{DynamicResource Area_BG}">
  488. <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
  489. <Button Content="Enable" Margin=" 0 0 15 0">
  490. </Button>
  491. <Button Content="Disable">
  492. </Button>
  493. </StackPanel>
  494. </Border>
  495. <Border Grid.Column="1" Grid.Row="1" Background="{DynamicResource Color_BD_Logoff}">
  496. <TextBlock Margin="2" TextWrapping="Wrap" Text="Exhaust Valve open when Operation Creck is executing"></TextBlock>
  497. </Border>
  498. </Grid>
  499. <Grid Height="80" Margin="2">
  500. <Grid.RowDefinitions >
  501. <RowDefinition Height="20"></RowDefinition>
  502. <RowDefinition Height="60"></RowDefinition>
  503. </Grid.RowDefinitions>
  504. <Grid.ColumnDefinitions>
  505. <ColumnDefinition></ColumnDefinition>
  506. <ColumnDefinition></ColumnDefinition>
  507. </Grid.ColumnDefinitions>
  508. <Border Grid.ColumnSpan="2" Background="{DynamicResource Area_BD}" Margin=" 0 2 0 0">
  509. <TextBlock Text="02-Density Arrival Value"></TextBlock>
  510. </Border>
  511. <Border Grid.Column="0" Grid.Row="1" Background="{DynamicResource Area_BG}">
  512. <TextBox Margin="6"></TextBox>
  513. </Border>
  514. <Border Grid.Column="1" Grid.Row="1" Background="{DynamicResource Color_BD_Logoff}">
  515. <TextBlock Margin="2" TextWrapping="Wrap" Text="Set value of O2-Dersity when Exraust Valve is closed"></TextBlock>
  516. </Border>
  517. </Grid>
  518. <Grid Height="80" Margin="2">
  519. <Grid.RowDefinitions >
  520. <RowDefinition Height="20"></RowDefinition>
  521. <RowDefinition Height="60"></RowDefinition>
  522. </Grid.RowDefinitions>
  523. <Grid.ColumnDefinitions>
  524. <ColumnDefinition></ColumnDefinition>
  525. <ColumnDefinition></ColumnDefinition>
  526. </Grid.ColumnDefinitions>
  527. <Border Grid.ColumnSpan="2" Background="{DynamicResource Area_BD}" Margin=" 0 2 0 0">
  528. <TextBlock Text="02-Density Stable Wait Time"></TextBlock>
  529. </Border>
  530. <Border Grid.Column="0" Grid.Row="1" Background="{DynamicResource Area_BG}">
  531. <TextBox Margin="6"></TextBox>
  532. </Border>
  533. <Border Grid.Column="1" Grid.Row="1" Background="{DynamicResource Color_BD_Logoff}">
  534. <TextBlock Margin="2" TextWrapping="Wrap" Text="Set stabllity waiting time after O2-Dersity arrival"></TextBlock>
  535. </Border>
  536. </Grid>
  537. </StackPanel>
  538. </Grid>
  539. <Grid Margin="10" Visibility="{Binding FoupEnterVisible}">
  540. <Grid.RowDefinitions>
  541. <RowDefinition />
  542. <RowDefinition Height="50"/>
  543. </Grid.RowDefinitions>
  544. <StackPanel Orientation="Vertical" HorizontalAlignment="Center" VerticalAlignment="Top" Width="320">
  545. <Grid Height="80" Margin="2">
  546. <Grid.RowDefinitions >
  547. <RowDefinition Height="20"></RowDefinition>
  548. <RowDefinition Height="60"></RowDefinition>
  549. </Grid.RowDefinitions>
  550. <Grid.ColumnDefinitions>
  551. <ColumnDefinition></ColumnDefinition>
  552. <ColumnDefinition></ColumnDefinition>
  553. </Grid.ColumnDefinitions>
  554. <Border Grid.ColumnSpan="2" Background="{DynamicResource Area_BD}" Margin=" 0 2 0 0">
  555. <TextBlock Text="Transfer-Room N2-Purge"></TextBlock>
  556. </Border>
  557. <Border Grid.Column="0" Grid.Row="1" Background="{DynamicResource Area_BG}">
  558. <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
  559. <Button Content="Enable" Margin=" 0 0 15 0">
  560. </Button>
  561. <Button Content="Disable">
  562. </Button>
  563. </StackPanel>
  564. </Border>
  565. <Border Grid.Column="1" Grid.Row="1" Background="{DynamicResource Color_BD_Logoff}">
  566. <TextBlock Margin="2" TextWrapping="Wrap" Text="[Foup Enter] Enable N2-Purge before OUP N2-Purge"></TextBlock>
  567. </Border>
  568. </Grid>
  569. <Grid Height="80" Margin="2">
  570. <Grid.RowDefinitions >
  571. <RowDefinition Height="20"></RowDefinition>
  572. <RowDefinition Height="60"></RowDefinition>
  573. </Grid.RowDefinitions>
  574. <Grid.ColumnDefinitions>
  575. <ColumnDefinition></ColumnDefinition>
  576. <ColumnDefinition></ColumnDefinition>
  577. </Grid.ColumnDefinitions>
  578. <Border Grid.ColumnSpan="2" Background="{DynamicResource Area_BD}" Margin=" 0 2 0 0">
  579. <TextBlock Text="Transfer-Room O2-Density Check"></TextBlock>
  580. </Border>
  581. <Border Grid.Column="0" Grid.Row="1" Background="{DynamicResource Area_BG}">
  582. <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
  583. <Button Content="Enable" Margin=" 0 0 15 0">
  584. </Button>
  585. <Button Content="Disable">
  586. </Button>
  587. </StackPanel>
  588. </Border>
  589. <Border Grid.Column="1" Grid.Row="1" Background="{DynamicResource Color_BD_Logoff}">
  590. <TextBlock Margin="2" TextWrapping="Wrap" Text="[Foup Enter] Enable O2-Dnsity check after N2purge"></TextBlock>
  591. </Border>
  592. </Grid>
  593. <Grid Height="80" Margin="2">
  594. <Grid.RowDefinitions >
  595. <RowDefinition Height="20"></RowDefinition>
  596. <RowDefinition Height="60"></RowDefinition>
  597. </Grid.RowDefinitions>
  598. <Grid.ColumnDefinitions>
  599. <ColumnDefinition></ColumnDefinition>
  600. <ColumnDefinition></ColumnDefinition>
  601. </Grid.ColumnDefinitions>
  602. <Border Grid.ColumnSpan="2" Background="{DynamicResource Area_BD}" Margin=" 0 2 0 0">
  603. <TextBlock Text="FOUP N2-Purge"></TextBlock>
  604. </Border>
  605. <Border Grid.Column="0" Grid.Row="1" Background="{DynamicResource Area_BG}">
  606. <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
  607. <Button Content="Enable" Margin=" 0 0 15 0">
  608. </Button>
  609. <Button Content="Disable">
  610. </Button>
  611. </StackPanel>
  612. </Border>
  613. <Border Grid.Column="1" Grid.Row="1" Background="{DynamicResource Color_BD_Logoff}">
  614. <TextBlock Margin="2" TextWrapping="Wrap" Text="[Foup Enter] Enable FoupN2Purge"></TextBlock>
  615. </Border>
  616. </Grid>
  617. <Grid Height="80" Margin="2">
  618. <Grid.RowDefinitions >
  619. <RowDefinition Height="20"></RowDefinition>
  620. <RowDefinition Height="60"></RowDefinition>
  621. </Grid.RowDefinitions>
  622. <Grid.ColumnDefinitions>
  623. <ColumnDefinition></ColumnDefinition>
  624. <ColumnDefinition></ColumnDefinition>
  625. </Grid.ColumnDefinitions>
  626. <Border Grid.ColumnSpan="2" Background="{DynamicResource Area_BD}" Margin=" 0 2 0 0">
  627. <TextBlock Text="FOUP N2-Purge Cancel"></TextBlock>
  628. </Border>
  629. <Border Grid.Column="0" Grid.Row="1" Background="{DynamicResource Area_BG}">
  630. <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
  631. <Button Content="Enable" Margin=" 0 0 15 0">
  632. </Button>
  633. <Button Content="Disable">
  634. </Button>
  635. </StackPanel>
  636. </Border>
  637. <Border Grid.Column="1" Grid.Row="1" Background="{DynamicResource Color_BD_Logoff}">
  638. <TextBlock Margin="2" TextWrapping="Wrap" Text="[Foup Enter] Enebe FOUP N2-Purge Cancal When Evacuating Trarsfer-Room Compuisorily"></TextBlock>
  639. </Border>
  640. </Grid>
  641. <!--<Grid Height="80" Margin="2">
  642. <Grid.RowDefinitions >
  643. <RowDefinition Height="20"></RowDefinition>
  644. <RowDefinition Height="60"></RowDefinition>
  645. </Grid.RowDefinitions>
  646. <Grid.ColumnDefinitions>
  647. <ColumnDefinition></ColumnDefinition>
  648. <ColumnDefinition></ColumnDefinition>
  649. </Grid.ColumnDefinitions>
  650. <Border Grid.ColumnSpan="2" Background="{DynamicResource Area_BD}" Margin=" 0 2 0 0">
  651. <TextBlock Text="02-Density Arrival Value"></TextBlock>
  652. </Border>
  653. <Border Grid.Column="0" Grid.Row="1" Background="{DynamicResource Area_BG}">
  654. <TextBox Margin="6"></TextBox>
  655. </Border>
  656. <Border Grid.Column="1" Grid.Row="1" Background="{DynamicResource Color_BD_Logoff}">
  657. <TextBlock Margin="2" TextWrapping="Wrap" Text="Set value of O2-Dersity when Exraust Valve is closed"></TextBlock>
  658. </Border>
  659. </Grid>-->
  660. </StackPanel>
  661. </Grid>
  662. <Grid Margin="10" Visibility="{Binding WaferChargeVisible}">
  663. <Grid.RowDefinitions>
  664. <RowDefinition />
  665. <RowDefinition Height="50"/>
  666. </Grid.RowDefinitions>
  667. <StackPanel Orientation="Vertical" HorizontalAlignment="Center" VerticalAlignment="Top" Width="320">
  668. <Grid Height="80" Margin="2">
  669. <Grid.RowDefinitions >
  670. <RowDefinition Height="20"></RowDefinition>
  671. <RowDefinition Height="60"></RowDefinition>
  672. </Grid.RowDefinitions>
  673. <Grid.ColumnDefinitions>
  674. <ColumnDefinition></ColumnDefinition>
  675. <ColumnDefinition></ColumnDefinition>
  676. </Grid.ColumnDefinitions>
  677. <Border Grid.ColumnSpan="2" Background="{DynamicResource Area_BD}" Margin=" 0 2 0 0">
  678. <TextBlock Text="Transfer-Room N2-Purge"></TextBlock>
  679. </Border>
  680. <Border Grid.Column="0" Grid.Row="1" Background="{DynamicResource Area_BG}">
  681. <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
  682. <Button Content="Enable" Margin=" 0 0 15 0">
  683. </Button>
  684. <Button Content="Disable">
  685. </Button>
  686. </StackPanel>
  687. </Border>
  688. <Border Grid.Column="1" Grid.Row="1" Background="{DynamicResource Color_BD_Logoff}">
  689. <TextBlock Margin="2" TextWrapping="Wrap" Text="[Wafer Charge] Enable N2-Purge before FOUP N2-Purge"></TextBlock>
  690. </Border>
  691. </Grid>
  692. <Grid Height="80" Margin="2">
  693. <Grid.RowDefinitions >
  694. <RowDefinition Height="20"></RowDefinition>
  695. <RowDefinition Height="60"></RowDefinition>
  696. </Grid.RowDefinitions>
  697. <Grid.ColumnDefinitions>
  698. <ColumnDefinition></ColumnDefinition>
  699. <ColumnDefinition></ColumnDefinition>
  700. </Grid.ColumnDefinitions>
  701. <Border Grid.ColumnSpan="2" Background="{DynamicResource Area_BD}" Margin=" 0 2 0 0">
  702. <TextBlock Text="Transfer-Room O2-Density Check"></TextBlock>
  703. </Border>
  704. <Border Grid.Column="0" Grid.Row="1" Background="{DynamicResource Area_BG}">
  705. <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
  706. <Button Content="Enable" Margin=" 0 0 15 0">
  707. </Button>
  708. <Button Content="Disable">
  709. </Button>
  710. </StackPanel>
  711. </Border>
  712. <Border Grid.Column="1" Grid.Row="1" Background="{DynamicResource Color_BD_Logoff}">
  713. <TextBlock Margin="2" TextWrapping="Wrap" Text="[Wafer Charge] Enable O2-Density check after N2purge"></TextBlock>
  714. </Border>
  715. </Grid>
  716. <Grid Height="80" Margin="2">
  717. <Grid.RowDefinitions >
  718. <RowDefinition Height="20"></RowDefinition>
  719. <RowDefinition Height="60"></RowDefinition>
  720. </Grid.RowDefinitions>
  721. <Grid.ColumnDefinitions>
  722. <ColumnDefinition></ColumnDefinition>
  723. <ColumnDefinition></ColumnDefinition>
  724. </Grid.ColumnDefinitions>
  725. <Border Grid.ColumnSpan="2" Background="{DynamicResource Area_BD}" Margin=" 0 2 0 0">
  726. <TextBlock Text="Transfer-Room O2-Density Keep"></TextBlock>
  727. </Border>
  728. <Border Grid.Column="0" Grid.Row="1" Background="{DynamicResource Area_BG}">
  729. <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
  730. <Button Content="Enable" Margin=" 0 0 15 0">
  731. </Button>
  732. <Button Content="Disable">
  733. </Button>
  734. </StackPanel>
  735. </Border>
  736. <Border Grid.Column="1" Grid.Row="1" Background="{DynamicResource Color_BD_Logoff}">
  737. <TextBlock Margin="2" TextWrapping="Wrap" Text="[Wafer Charge] Enabe O2 keep"></TextBlock>
  738. </Border>
  739. </Grid>
  740. <Grid Height="80" Margin="2">
  741. <Grid.RowDefinitions >
  742. <RowDefinition Height="20"></RowDefinition>
  743. <RowDefinition Height="60"></RowDefinition>
  744. </Grid.RowDefinitions>
  745. <Grid.ColumnDefinitions>
  746. <ColumnDefinition></ColumnDefinition>
  747. <ColumnDefinition></ColumnDefinition>
  748. </Grid.ColumnDefinitions>
  749. <Border Grid.ColumnSpan="2" Background="{DynamicResource Area_BD}" Margin=" 0 2 0 0">
  750. <TextBlock Text="FOUP N2-Purge"></TextBlock>
  751. </Border>
  752. <Border Grid.Column="0" Grid.Row="1" Background="{DynamicResource Area_BG}">
  753. <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
  754. <Button Content="Enable" Margin=" 0 0 15 0">
  755. </Button>
  756. <Button Content="Disable">
  757. </Button>
  758. </StackPanel>
  759. </Border>
  760. <Border Grid.Column="1" Grid.Row="1" Background="{DynamicResource Color_BD_Logoff}">
  761. <TextBlock Margin="2" TextWrapping="Wrap" Text="[Wafer Charge] Enable FOUP N2Purge"></TextBlock>
  762. </Border>
  763. </Grid>
  764. <!--<Grid Height="80" Margin="2">
  765. <Grid.RowDefinitions >
  766. <RowDefinition Height="20"></RowDefinition>
  767. <RowDefinition Height="60"></RowDefinition>
  768. </Grid.RowDefinitions>
  769. <Grid.ColumnDefinitions>
  770. <ColumnDefinition></ColumnDefinition>
  771. <ColumnDefinition></ColumnDefinition>
  772. </Grid.ColumnDefinitions>
  773. <Border Grid.ColumnSpan="2" Background="{DynamicResource Area_BD}" Margin=" 0 2 0 0">
  774. <TextBlock Text="02-Density Arrival Value"></TextBlock>
  775. </Border>
  776. <Border Grid.Column="0" Grid.Row="1" Background="{DynamicResource Area_BG}">
  777. <TextBox Margin="6"></TextBox>
  778. </Border>
  779. <Border Grid.Column="1" Grid.Row="1" Background="{DynamicResource Color_BD_Logoff}">
  780. <TextBlock Margin="2" TextWrapping="Wrap" Text="Set value of O2-Dersity when Exraust Valve is closed"></TextBlock>
  781. </Border>
  782. </Grid>-->
  783. </StackPanel>
  784. </Grid>
  785. <Grid Margin="10" Visibility="{Binding BoatLoadVisible}">
  786. <Grid.RowDefinitions>
  787. <RowDefinition />
  788. <RowDefinition Height="50"/>
  789. </Grid.RowDefinitions>
  790. <StackPanel Orientation="Vertical" HorizontalAlignment="Center" VerticalAlignment="Top" Width="320">
  791. <Grid Height="80" Margin="2">
  792. <Grid.RowDefinitions >
  793. <RowDefinition Height="20"></RowDefinition>
  794. <RowDefinition Height="60"></RowDefinition>
  795. </Grid.RowDefinitions>
  796. <Grid.ColumnDefinitions>
  797. <ColumnDefinition></ColumnDefinition>
  798. <ColumnDefinition></ColumnDefinition>
  799. </Grid.ColumnDefinitions>
  800. <Border Grid.ColumnSpan="2" Background="{DynamicResource Area_BD}" Margin=" 0 2 0 0">
  801. <TextBlock Text="Transfer-Room N2-Purge"></TextBlock>
  802. </Border>
  803. <Border Grid.Column="0" Grid.Row="1" Background="{DynamicResource Area_BG}">
  804. <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
  805. <Button Content="Enable" Margin=" 0 0 15 0">
  806. </Button>
  807. <Button Content="Disable">
  808. </Button>
  809. </StackPanel>
  810. </Border>
  811. <Border Grid.Column="1" Grid.Row="1" Background="{DynamicResource Color_BD_Logoff}">
  812. <TextBlock Margin="2" TextWrapping="Wrap" Text="[Before Boat Load] Enable N2 Purge"></TextBlock>
  813. </Border>
  814. </Grid>
  815. <Grid Height="80" Margin="2">
  816. <Grid.RowDefinitions >
  817. <RowDefinition Height="20"></RowDefinition>
  818. <RowDefinition Height="60"></RowDefinition>
  819. </Grid.RowDefinitions>
  820. <Grid.ColumnDefinitions>
  821. <ColumnDefinition></ColumnDefinition>
  822. <ColumnDefinition></ColumnDefinition>
  823. </Grid.ColumnDefinitions>
  824. <Border Grid.ColumnSpan="2" Background="{DynamicResource Area_BD}" Margin=" 0 2 0 0">
  825. <TextBlock Text="Transfer-Room O2-Density Check"></TextBlock>
  826. </Border>
  827. <Border Grid.Column="0" Grid.Row="1" Background="{DynamicResource Area_BG}">
  828. <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
  829. <Button Content="Enable" Margin=" 0 0 15 0">
  830. </Button>
  831. <Button Content="Disable">
  832. </Button>
  833. </StackPanel>
  834. </Border>
  835. <Border Grid.Column="1" Grid.Row="1" Background="{DynamicResource Color_BD_Logoff}">
  836. <TextBlock Margin="2" TextWrapping="Wrap" Text="[Before Boat Load] Enable O2-Dnsity check after N2purge"></TextBlock>
  837. </Border>
  838. </Grid>
  839. <Grid Height="80" Margin="2">
  840. <Grid.RowDefinitions >
  841. <RowDefinition Height="20"></RowDefinition>
  842. <RowDefinition Height="60"></RowDefinition>
  843. </Grid.RowDefinitions>
  844. <Grid.ColumnDefinitions>
  845. <ColumnDefinition></ColumnDefinition>
  846. <ColumnDefinition></ColumnDefinition>
  847. </Grid.ColumnDefinitions>
  848. <Border Grid.ColumnSpan="2" Background="{DynamicResource Area_BD}" Margin=" 0 2 0 0">
  849. <TextBlock Text="E-Axis Inhibit"></TextBlock>
  850. </Border>
  851. <Border Grid.Column="0" Grid.Row="1" Background="{DynamicResource Area_BG}">
  852. <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
  853. <Button Content="Enable" Margin=" 0 0 15 0">
  854. </Button>
  855. <Button Content="Disable">
  856. </Button>
  857. </StackPanel>
  858. </Border>
  859. <Border Grid.Column="1" Grid.Row="1" Background="{DynamicResource Color_BD_Logoff}">
  860. <TextBlock Margin="2" TextWrapping="Wrap" Text="Enable Boat Elevator Inhibit when O2 Density does not arrive in time"></TextBlock>
  861. </Border>
  862. </Grid>
  863. <Grid Height="80" Margin="2">
  864. <Grid.RowDefinitions >
  865. <RowDefinition Height="20"></RowDefinition>
  866. <RowDefinition Height="60"></RowDefinition>
  867. </Grid.RowDefinitions>
  868. <Grid.ColumnDefinitions>
  869. <ColumnDefinition></ColumnDefinition>
  870. <ColumnDefinition></ColumnDefinition>
  871. </Grid.ColumnDefinitions>
  872. <Border Grid.ColumnSpan="2" Background="{DynamicResource Area_BD}" Margin=" 0 2 0 0">
  873. <TextBlock Text="FOUP Inhibit"></TextBlock>
  874. </Border>
  875. <Border Grid.Column="0" Grid.Row="1" Background="{DynamicResource Area_BG}">
  876. <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
  877. <Button Content="Enable" Margin=" 0 0 15 0">
  878. </Button>
  879. <Button Content="Disable">
  880. </Button>
  881. </StackPanel>
  882. </Border>
  883. <Border Grid.Column="1" Grid.Row="1" Background="{DynamicResource Color_BD_Logoff}">
  884. <TextBlock Margin="2" TextWrapping="Wrap" Text="Enable FOUP Open Inhibit when boat loaing"></TextBlock>
  885. </Border>
  886. </Grid>
  887. <Grid Height="80" Margin="2">
  888. <Grid.RowDefinitions >
  889. <RowDefinition Height="20"></RowDefinition>
  890. <RowDefinition Height="60"></RowDefinition>
  891. </Grid.RowDefinitions>
  892. <Grid.ColumnDefinitions>
  893. <ColumnDefinition></ColumnDefinition>
  894. <ColumnDefinition></ColumnDefinition>
  895. </Grid.ColumnDefinitions>
  896. <Border Grid.ColumnSpan="2" Background="{DynamicResource Area_BD}" Margin=" 0 2 0 0">
  897. <TextBlock Text="Transfer-Room O2-Density Keep"></TextBlock>
  898. </Border>
  899. <Border Grid.Column="0" Grid.Row="1" Background="{DynamicResource Area_BG}">
  900. <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
  901. <Button Content="Enable" Margin=" 0 0 15 0">
  902. </Button>
  903. <Button Content="Disable">
  904. </Button>
  905. </StackPanel>
  906. </Border>
  907. <Border Grid.Column="1" Grid.Row="1" Background="{DynamicResource Color_BD_Logoff}">
  908. <TextBlock Margin="2" TextWrapping="Wrap" Text="Enebe O2 when boat loading"></TextBlock>
  909. </Border>
  910. </Grid>
  911. <!--<Grid Height="80" Margin="2">
  912. <Grid.RowDefinitions >
  913. <RowDefinition Height="20"></RowDefinition>
  914. <RowDefinition Height="60"></RowDefinition>
  915. </Grid.RowDefinitions>
  916. <Grid.ColumnDefinitions>
  917. <ColumnDefinition></ColumnDefinition>
  918. <ColumnDefinition></ColumnDefinition>
  919. </Grid.ColumnDefinitions>
  920. <Border Grid.ColumnSpan="2" Background="{DynamicResource Area_BD}" Margin=" 0 2 0 0">
  921. <TextBlock Text="02-Density Arrival Value"></TextBlock>
  922. </Border>
  923. <Border Grid.Column="0" Grid.Row="1" Background="{DynamicResource Area_BG}">
  924. <TextBox Margin="6"></TextBox>
  925. </Border>
  926. <Border Grid.Column="1" Grid.Row="1" Background="{DynamicResource Color_BD_Logoff}">
  927. <TextBlock Margin="2" TextWrapping="Wrap" Text="Set value of O2-Dersity when Exraust Valve is closed"></TextBlock>
  928. </Border>
  929. </Grid>-->
  930. </StackPanel>
  931. </Grid>
  932. <Grid Margin="10" Visibility="{Binding FoupInhibitAfterVisible}">
  933. <Grid.RowDefinitions>
  934. <RowDefinition />
  935. <RowDefinition Height="50"/>
  936. </Grid.RowDefinitions>
  937. <StackPanel Orientation="Vertical" HorizontalAlignment="Center" VerticalAlignment="Top" Width="320">
  938. <Grid Height="80" Margin="2">
  939. <Grid.RowDefinitions >
  940. <RowDefinition Height="20"></RowDefinition>
  941. <RowDefinition Height="60"></RowDefinition>
  942. </Grid.RowDefinitions>
  943. <Grid.ColumnDefinitions>
  944. <ColumnDefinition></ColumnDefinition>
  945. <ColumnDefinition></ColumnDefinition>
  946. </Grid.ColumnDefinitions>
  947. <Border Grid.ColumnSpan="2" Background="{DynamicResource Area_BD}" Margin=" 0 2 0 0">
  948. <TextBlock Text="FOUP Inhibit"></TextBlock>
  949. </Border>
  950. <Border Grid.Column="0" Grid.Row="1" Background="{DynamicResource Area_BG}">
  951. <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
  952. <Button Content="Enable" Margin=" 0 0 15 0">
  953. </Button>
  954. <Button Content="Disable">
  955. </Button>
  956. </StackPanel>
  957. </Border>
  958. <Border Grid.Column="1" Grid.Row="1" Background="{DynamicResource Color_BD_Logoff}">
  959. <TextBlock Margin="2" TextWrapping="Wrap" Text="Enable FOUP opener Inhiit after Boat load"></TextBlock>
  960. </Border>
  961. </Grid>
  962. <Grid Height="80" Margin="2">
  963. <Grid.RowDefinitions >
  964. <RowDefinition Height="20"></RowDefinition>
  965. <RowDefinition Height="60"></RowDefinition>
  966. </Grid.RowDefinitions>
  967. <Grid.ColumnDefinitions>
  968. <ColumnDefinition></ColumnDefinition>
  969. <ColumnDefinition></ColumnDefinition>
  970. </Grid.ColumnDefinitions>
  971. <Border Grid.ColumnSpan="2" Background="{DynamicResource Area_BD}" Margin=" 0 2 0 0">
  972. <TextBlock Text="FOUP Inhibit Time"></TextBlock>
  973. </Border>
  974. <Border Grid.Column="0" Grid.Row="1" Background="{DynamicResource Area_BG}">
  975. <TextBox Margin="6"></TextBox>
  976. </Border>
  977. <Border Grid.Column="1" Grid.Row="1" Background="{DynamicResource Color_BD_Logoff}">
  978. <TextBlock Margin="2" TextWrapping="Wrap" Text="Set time of FOUP opener Inhibit after Boad Load"></TextBlock>
  979. </Border>
  980. </Grid>
  981. </StackPanel>
  982. </Grid>
  983. <Grid Margin="10" Visibility="{Binding BoatUnloadVisible}">
  984. <Grid.RowDefinitions>
  985. <RowDefinition />
  986. <RowDefinition Height="50"/>
  987. </Grid.RowDefinitions>
  988. <StackPanel Orientation="Vertical" HorizontalAlignment="Center" VerticalAlignment="Top" Width="320">
  989. <Grid Height="80" Margin="2">
  990. <Grid.RowDefinitions >
  991. <RowDefinition Height="20"></RowDefinition>
  992. <RowDefinition Height="60"></RowDefinition>
  993. </Grid.RowDefinitions>
  994. <Grid.ColumnDefinitions>
  995. <ColumnDefinition></ColumnDefinition>
  996. <ColumnDefinition></ColumnDefinition>
  997. </Grid.ColumnDefinitions>
  998. <Border Grid.ColumnSpan="2" Background="{DynamicResource Area_BD}" Margin=" 0 2 0 0">
  999. <TextBlock Text="Transfer-Room N2-Purge"></TextBlock>
  1000. </Border>
  1001. <Border Grid.Column="0" Grid.Row="1" Background="{DynamicResource Area_BG}">
  1002. <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
  1003. <Button Content="Enable" Margin=" 0 0 15 0">
  1004. </Button>
  1005. <Button Content="Disable">
  1006. </Button>
  1007. </StackPanel>
  1008. </Border>
  1009. <Border Grid.Column="1" Grid.Row="1" Background="{DynamicResource Color_BD_Logoff}">
  1010. <TextBlock Margin="2" TextWrapping="Wrap" Text="[Before Boat UnLoad] Enable N2 Purge"></TextBlock>
  1011. </Border>
  1012. </Grid>
  1013. <Grid Height="80" Margin="2">
  1014. <Grid.RowDefinitions >
  1015. <RowDefinition Height="20"></RowDefinition>
  1016. <RowDefinition Height="60"></RowDefinition>
  1017. </Grid.RowDefinitions>
  1018. <Grid.ColumnDefinitions>
  1019. <ColumnDefinition></ColumnDefinition>
  1020. <ColumnDefinition></ColumnDefinition>
  1021. </Grid.ColumnDefinitions>
  1022. <Border Grid.ColumnSpan="2" Background="{DynamicResource Area_BD}" Margin=" 0 2 0 0">
  1023. <TextBlock Text="Transfer-Room O2-Density Check"></TextBlock>
  1024. </Border>
  1025. <Border Grid.Column="0" Grid.Row="1" Background="{DynamicResource Area_BG}">
  1026. <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
  1027. <Button Content="Enable" Margin=" 0 0 15 0">
  1028. </Button>
  1029. <Button Content="Disable">
  1030. </Button>
  1031. </StackPanel>
  1032. </Border>
  1033. <Border Grid.Column="1" Grid.Row="1" Background="{DynamicResource Color_BD_Logoff}">
  1034. <TextBlock Margin="2" TextWrapping="Wrap" Text="[Before Boat UnLoad] Enable O2-Dnsity check after N2purge"></TextBlock>
  1035. </Border>
  1036. </Grid>
  1037. <Grid Height="80" Margin="2">
  1038. <Grid.RowDefinitions >
  1039. <RowDefinition Height="20"></RowDefinition>
  1040. <RowDefinition Height="60"></RowDefinition>
  1041. </Grid.RowDefinitions>
  1042. <Grid.ColumnDefinitions>
  1043. <ColumnDefinition></ColumnDefinition>
  1044. <ColumnDefinition></ColumnDefinition>
  1045. </Grid.ColumnDefinitions>
  1046. <Border Grid.ColumnSpan="2" Background="{DynamicResource Area_BD}" Margin=" 0 2 0 0">
  1047. <TextBlock Text="E-Axis Inhibit"></TextBlock>
  1048. </Border>
  1049. <Border Grid.Column="0" Grid.Row="1" Background="{DynamicResource Area_BG}">
  1050. <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
  1051. <Button Content="Enable" Margin=" 0 0 15 0">
  1052. </Button>
  1053. <Button Content="Disable">
  1054. </Button>
  1055. </StackPanel>
  1056. </Border>
  1057. <Border Grid.Column="1" Grid.Row="1" Background="{DynamicResource Color_BD_Logoff}">
  1058. <TextBlock Margin="2" TextWrapping="Wrap" Text="Enable Boat Elevator Inhibit when O2 Density does not arrive in time"></TextBlock>
  1059. </Border>
  1060. </Grid>
  1061. <Grid Height="80" Margin="2">
  1062. <Grid.RowDefinitions >
  1063. <RowDefinition Height="20"></RowDefinition>
  1064. <RowDefinition Height="60"></RowDefinition>
  1065. </Grid.RowDefinitions>
  1066. <Grid.ColumnDefinitions>
  1067. <ColumnDefinition></ColumnDefinition>
  1068. <ColumnDefinition></ColumnDefinition>
  1069. </Grid.ColumnDefinitions>
  1070. <Border Grid.ColumnSpan="2" Background="{DynamicResource Area_BD}" Margin=" 0 2 0 0">
  1071. <TextBlock Text="FOUP Inhibit"></TextBlock>
  1072. </Border>
  1073. <Border Grid.Column="0" Grid.Row="1" Background="{DynamicResource Area_BG}">
  1074. <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
  1075. <Button Content="Enable" Margin=" 0 0 15 0">
  1076. </Button>
  1077. <Button Content="Disable">
  1078. </Button>
  1079. </StackPanel>
  1080. </Border>
  1081. <Border Grid.Column="1" Grid.Row="1" Background="{DynamicResource Color_BD_Logoff}">
  1082. <TextBlock Margin="2" TextWrapping="Wrap" Text="Enable FOUP Open Inhibit when boat unloaing"></TextBlock>
  1083. </Border>
  1084. </Grid>
  1085. <Grid Height="80" Margin="2">
  1086. <Grid.RowDefinitions >
  1087. <RowDefinition Height="20"></RowDefinition>
  1088. <RowDefinition Height="60"></RowDefinition>
  1089. </Grid.RowDefinitions>
  1090. <Grid.ColumnDefinitions>
  1091. <ColumnDefinition></ColumnDefinition>
  1092. <ColumnDefinition></ColumnDefinition>
  1093. </Grid.ColumnDefinitions>
  1094. <Border Grid.ColumnSpan="2" Background="{DynamicResource Area_BD}" Margin=" 0 2 0 0">
  1095. <TextBlock Text="Transfer-Room O2-Density Keep"></TextBlock>
  1096. </Border>
  1097. <Border Grid.Column="0" Grid.Row="1" Background="{DynamicResource Area_BG}">
  1098. <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
  1099. <Button Content="Enable" Margin=" 0 0 15 0">
  1100. </Button>
  1101. <Button Content="Disable">
  1102. </Button>
  1103. </StackPanel>
  1104. </Border>
  1105. <Border Grid.Column="1" Grid.Row="1" Background="{DynamicResource Color_BD_Logoff}">
  1106. <TextBlock Margin="2" TextWrapping="Wrap" Text="Enable O2 when boat unloading"></TextBlock>
  1107. </Border>
  1108. </Grid>
  1109. <!--<Grid Height="80" Margin="2">
  1110. <Grid.RowDefinitions >
  1111. <RowDefinition Height="20"></RowDefinition>
  1112. <RowDefinition Height="60"></RowDefinition>
  1113. </Grid.RowDefinitions>
  1114. <Grid.ColumnDefinitions>
  1115. <ColumnDefinition></ColumnDefinition>
  1116. <ColumnDefinition></ColumnDefinition>
  1117. </Grid.ColumnDefinitions>
  1118. <Border Grid.ColumnSpan="2" Background="{DynamicResource Area_BD}" Margin=" 0 2 0 0">
  1119. <TextBlock Text="02-Density Arrival Value"></TextBlock>
  1120. </Border>
  1121. <Border Grid.Column="0" Grid.Row="1" Background="{DynamicResource Area_BG}">
  1122. <TextBox Margin="6"></TextBox>
  1123. </Border>
  1124. <Border Grid.Column="1" Grid.Row="1" Background="{DynamicResource Color_BD_Logoff}">
  1125. <TextBlock Margin="2" TextWrapping="Wrap" Text="Set value of O2-Dersity when Exraust Valve is closed"></TextBlock>
  1126. </Border>
  1127. </Grid>-->
  1128. </StackPanel>
  1129. </Grid>
  1130. <Grid Margin="10" Visibility="{Binding BoatUnloadPreVisible}">
  1131. <Grid.RowDefinitions>
  1132. <RowDefinition />
  1133. <RowDefinition Height="50"/>
  1134. </Grid.RowDefinitions>
  1135. <StackPanel Orientation="Vertical" HorizontalAlignment="Center" VerticalAlignment="Top" Width="320">
  1136. <Grid Height="80" Margin="2">
  1137. <Grid.RowDefinitions >
  1138. <RowDefinition Height="20"></RowDefinition>
  1139. <RowDefinition Height="60"></RowDefinition>
  1140. </Grid.RowDefinitions>
  1141. <Grid.ColumnDefinitions>
  1142. <ColumnDefinition></ColumnDefinition>
  1143. <ColumnDefinition></ColumnDefinition>
  1144. </Grid.ColumnDefinitions>
  1145. <Border Grid.ColumnSpan="2" Background="{DynamicResource Area_BD}" Margin=" 0 2 0 0">
  1146. <TextBlock Text="Transfer-room N2-purge"></TextBlock>
  1147. </Border>
  1148. <Border Grid.Column="0" Grid.Row="1" Background="{DynamicResource Area_BG}">
  1149. <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
  1150. <Button Content="Enable" Margin=" 0 0 15 0">
  1151. </Button>
  1152. <Button Content="Disable">
  1153. </Button>
  1154. </StackPanel>
  1155. </Border>
  1156. <Border Grid.Column="1" Grid.Row="1" Background="{DynamicResource Color_BD_Logoff}">
  1157. <TextBlock Margin="2" TextWrapping="Wrap" Text="Enable O2-Purge before Pre detect N2-Purge is not started"></TextBlock>
  1158. </Border>
  1159. </Grid>
  1160. <Grid Height="80" Margin="2">
  1161. <Grid.RowDefinitions >
  1162. <RowDefinition Height="20"></RowDefinition>
  1163. <RowDefinition Height="60"></RowDefinition>
  1164. </Grid.RowDefinitions>
  1165. <Grid.ColumnDefinitions>
  1166. <ColumnDefinition></ColumnDefinition>
  1167. <ColumnDefinition></ColumnDefinition>
  1168. </Grid.ColumnDefinitions>
  1169. <Border Grid.ColumnSpan="2" Background="{DynamicResource Area_BD}" Margin=" 0 2 0 0">
  1170. <TextBlock Text="N2-Purge Star time before Unload"></TextBlock>
  1171. </Border>
  1172. <Border Grid.Column="0" Grid.Row="1" Background="{DynamicResource Area_BG}">
  1173. <TextBox Margin="6"></TextBox>
  1174. </Border>
  1175. <Border Grid.Column="1" Grid.Row="1" Background="{DynamicResource Color_BD_Logoff}">
  1176. <TextBlock Margin="2" TextWrapping="Wrap" Text="Stra time of N2-Puege before boat unload step"></TextBlock>
  1177. </Border>
  1178. </Grid>
  1179. </StackPanel>
  1180. </Grid>
  1181. <Grid Margin="10" Visibility="{Binding WaferCoolingVisible}">
  1182. <Grid.RowDefinitions>
  1183. <RowDefinition />
  1184. <RowDefinition Height="50"/>
  1185. </Grid.RowDefinitions>
  1186. <StackPanel Orientation="Vertical" HorizontalAlignment="Center" VerticalAlignment="Top" Width="320">
  1187. <Grid Height="80" Margin="2">
  1188. <Grid.RowDefinitions >
  1189. <RowDefinition Height="20"></RowDefinition>
  1190. <RowDefinition Height="60"></RowDefinition>
  1191. </Grid.RowDefinitions>
  1192. <Grid.ColumnDefinitions>
  1193. <ColumnDefinition></ColumnDefinition>
  1194. <ColumnDefinition></ColumnDefinition>
  1195. </Grid.ColumnDefinitions>
  1196. <Border Grid.ColumnSpan="2" Background="{DynamicResource Area_BD}" Margin=" 0 2 0 0">
  1197. <TextBlock Text="FOUP Inhibit"></TextBlock>
  1198. </Border>
  1199. <Border Grid.Column="0" Grid.Row="1" Background="{DynamicResource Area_BG}">
  1200. <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
  1201. <Button Content="Enable" Margin=" 0 0 15 0">
  1202. </Button>
  1203. <Button Content="Disable">
  1204. </Button>
  1205. </StackPanel>
  1206. </Border>
  1207. <Border Grid.Column="1" Grid.Row="1" Background="{DynamicResource Color_BD_Logoff}">
  1208. <TextBlock Margin="2" TextWrapping="Wrap" Text="[Wafer Cooling] Enable FOUP Inhibit"></TextBlock>
  1209. </Border>
  1210. </Grid>
  1211. </StackPanel>
  1212. </Grid>
  1213. <Grid Margin="10" Visibility="{Binding WaferDishargeVisible}">
  1214. <Grid.RowDefinitions>
  1215. <RowDefinition />
  1216. <RowDefinition Height="50"/>
  1217. </Grid.RowDefinitions>
  1218. <StackPanel Orientation="Vertical" HorizontalAlignment="Center" VerticalAlignment="Top" Width="320">
  1219. <Grid Height="80" Margin="2">
  1220. <Grid.RowDefinitions >
  1221. <RowDefinition Height="20"></RowDefinition>
  1222. <RowDefinition Height="60"></RowDefinition>
  1223. </Grid.RowDefinitions>
  1224. <Grid.ColumnDefinitions>
  1225. <ColumnDefinition></ColumnDefinition>
  1226. <ColumnDefinition></ColumnDefinition>
  1227. </Grid.ColumnDefinitions>
  1228. <Border Grid.ColumnSpan="2" Background="{DynamicResource Area_BD}" Margin=" 0 2 0 0">
  1229. <TextBlock Text="Transfer-Room N2-Purge"></TextBlock>
  1230. </Border>
  1231. <Border Grid.Column="0" Grid.Row="1" Background="{DynamicResource Area_BG}">
  1232. <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
  1233. <Button Content="Enable" Margin=" 0 0 15 0">
  1234. </Button>
  1235. <Button Content="Disable">
  1236. </Button>
  1237. </StackPanel>
  1238. </Border>
  1239. <Border Grid.Column="1" Grid.Row="1" Background="{DynamicResource Color_BD_Logoff}">
  1240. <TextBlock Margin="2" TextWrapping="Wrap" Text="[Wafer Discharge] Enable N2-Purge before FOUP N2-Purge"></TextBlock>
  1241. </Border>
  1242. </Grid>
  1243. <Grid Height="80" Margin="2">
  1244. <Grid.RowDefinitions >
  1245. <RowDefinition Height="20"></RowDefinition>
  1246. <RowDefinition Height="60"></RowDefinition>
  1247. </Grid.RowDefinitions>
  1248. <Grid.ColumnDefinitions>
  1249. <ColumnDefinition></ColumnDefinition>
  1250. <ColumnDefinition></ColumnDefinition>
  1251. </Grid.ColumnDefinitions>
  1252. <Border Grid.ColumnSpan="2" Background="{DynamicResource Area_BD}" Margin=" 0 2 0 0">
  1253. <TextBlock Text="Transfer-Room O2-Density Check"></TextBlock>
  1254. </Border>
  1255. <Border Grid.Column="0" Grid.Row="1" Background="{DynamicResource Area_BG}">
  1256. <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
  1257. <Button Content="Enable" Margin=" 0 0 15 0">
  1258. </Button>
  1259. <Button Content="Disable">
  1260. </Button>
  1261. </StackPanel>
  1262. </Border>
  1263. <Border Grid.Column="1" Grid.Row="1" Background="{DynamicResource Color_BD_Logoff}">
  1264. <TextBlock Margin="2" TextWrapping="Wrap" Text="[Wafer Discharge] Enable O2-Density check after N2purge"></TextBlock>
  1265. </Border>
  1266. </Grid>
  1267. <Grid Height="80" Margin="2">
  1268. <Grid.RowDefinitions >
  1269. <RowDefinition Height="20"></RowDefinition>
  1270. <RowDefinition Height="60"></RowDefinition>
  1271. </Grid.RowDefinitions>
  1272. <Grid.ColumnDefinitions>
  1273. <ColumnDefinition></ColumnDefinition>
  1274. <ColumnDefinition></ColumnDefinition>
  1275. </Grid.ColumnDefinitions>
  1276. <Border Grid.ColumnSpan="2" Background="{DynamicResource Area_BD}" Margin=" 0 2 0 0">
  1277. <TextBlock Text="Transfer-Room O2-Density Keep"></TextBlock>
  1278. </Border>
  1279. <Border Grid.Column="0" Grid.Row="1" Background="{DynamicResource Area_BG}">
  1280. <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
  1281. <Button Content="Enable" Margin=" 0 0 15 0">
  1282. </Button>
  1283. <Button Content="Disable">
  1284. </Button>
  1285. </StackPanel>
  1286. </Border>
  1287. <Border Grid.Column="1" Grid.Row="1" Background="{DynamicResource Color_BD_Logoff}">
  1288. <TextBlock Margin="2" TextWrapping="Wrap" Text="[Wafer Discharge] Enabe O2 keep"></TextBlock>
  1289. </Border>
  1290. </Grid>
  1291. <Grid Height="80" Margin="2">
  1292. <Grid.RowDefinitions >
  1293. <RowDefinition Height="20"></RowDefinition>
  1294. <RowDefinition Height="60"></RowDefinition>
  1295. </Grid.RowDefinitions>
  1296. <Grid.ColumnDefinitions>
  1297. <ColumnDefinition></ColumnDefinition>
  1298. <ColumnDefinition></ColumnDefinition>
  1299. </Grid.ColumnDefinitions>
  1300. <Border Grid.ColumnSpan="2" Background="{DynamicResource Area_BD}" Margin=" 0 2 0 0">
  1301. <TextBlock Text="FOUP N2-Purge"></TextBlock>
  1302. </Border>
  1303. <Border Grid.Column="0" Grid.Row="1" Background="{DynamicResource Area_BG}">
  1304. <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
  1305. <Button Content="Enable" Margin=" 0 0 15 0">
  1306. </Button>
  1307. <Button Content="Disable">
  1308. </Button>
  1309. </StackPanel>
  1310. </Border>
  1311. <Border Grid.Column="1" Grid.Row="1" Background="{DynamicResource Color_BD_Logoff}">
  1312. <TextBlock Margin="2" TextWrapping="Wrap" Text="[Wafer Discharge] Enable FOUP N2Purge"></TextBlock>
  1313. </Border>
  1314. </Grid>
  1315. <!--<Grid Height="80" Margin="2">
  1316. <Grid.RowDefinitions >
  1317. <RowDefinition Height="20"></RowDefinition>
  1318. <RowDefinition Height="60"></RowDefinition>
  1319. </Grid.RowDefinitions>
  1320. <Grid.ColumnDefinitions>
  1321. <ColumnDefinition></ColumnDefinition>
  1322. <ColumnDefinition></ColumnDefinition>
  1323. </Grid.ColumnDefinitions>
  1324. <Border Grid.ColumnSpan="2" Background="{DynamicResource Area_BD}" Margin=" 0 2 0 0">
  1325. <TextBlock Text="02-Density Arrival Value"></TextBlock>
  1326. </Border>
  1327. <Border Grid.Column="0" Grid.Row="1" Background="{DynamicResource Area_BG}">
  1328. <TextBox Margin="6"></TextBox>
  1329. </Border>
  1330. <Border Grid.Column="1" Grid.Row="1" Background="{DynamicResource Color_BD_Logoff}">
  1331. <TextBlock Margin="2" TextWrapping="Wrap" Text="Set value of O2-Dersity when Exraust Valve is closed"></TextBlock>
  1332. </Border>
  1333. </Grid>-->
  1334. </StackPanel>
  1335. </Grid>
  1336. </Grid>
  1337. </UserControl>