PressureDetailView.xaml 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472
  1. <UserControl x:Class="FurnaceUI.Views.Operations.PressureDetailView"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  4. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:deviceControl="clr-namespace:Aitex.Core.UI.DeviceControl;assembly=MECF.Framework.UI.Core"
  7. xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity" xmlns:cal="http://www.caliburn.org"
  8. xmlns:controls2="clr-namespace:MECF.Framework.UI.Client.IndustrialControl;assembly=MECF.Framework.UI.Client"
  9. xmlns:enumData="clr-namespace:MECF.Framework.Common.CommonData.EnumData;assembly=MECF.Framework.Common"
  10. mc:Ignorable="d"
  11. Height="820" Width="1200" FontFamily="Segoe" >
  12. <UserControl.Resources>
  13. <enumData:LeakCheckStatusColorConverter x:Key="LeakCheckStatusColorConverter" />
  14. <Style TargetType="Border" BasedOn="{StaticResource WrapBorder}">
  15. <Setter Property="Background" Value="{StaticResource Area_BG_2}"/>
  16. <Setter Property="BorderBrush" Value="Black"/>
  17. <Setter Property="BorderThickness" Value="1"/>
  18. </Style>
  19. <Style TargetType="TextBox" >
  20. <Setter Property="Width" Value="172"/>
  21. <Setter Property="Margin" Value="1,0,10,0"/>
  22. <Setter Property="HorizontalContentAlignment" Value="Center"/>
  23. <Setter Property="VerticalContentAlignment" Value="Center"/>
  24. </Style>
  25. <Style TargetType="Label" BasedOn="{StaticResource Label_GridButton}">
  26. <Setter Property="HorizontalContentAlignment" Value="Center"/>
  27. <Setter Property="VerticalContentAlignment" Value="Center"/>
  28. <Setter Property="Width" Value="100"/>
  29. </Style>
  30. </UserControl.Resources>
  31. <Grid>
  32. <TabControl>
  33. <TabItem Header="Press">
  34. <StackPanel Orientation="Vertical">
  35. <GroupBox>
  36. <GroupBox.Header>
  37. <TextBlock Text="Recipe Set Value" Foreground="Black"/>
  38. </GroupBox.Header>
  39. <StackPanel Orientation="Vertical">
  40. <StackPanel Orientation="Horizontal">
  41. <StackPanel Orientation="Horizontal">
  42. <Border>
  43. <Label Content="Mode:"/>
  44. </Border>
  45. <TextBox Tag="None" IsReadOnly="True" Text="APC Control" />
  46. </StackPanel>
  47. <StackPanel Orientation="Horizontal" >
  48. <Border>
  49. <Label Content="Command:"/>
  50. </Border>
  51. <TextBox Tag="None" IsReadOnly="True" Text="{Binding APCData.TextModeFeedback, Mode=OneWay}" />
  52. </StackPanel>
  53. <StackPanel Orientation="Horizontal" >
  54. <Border>
  55. <Label Content="Command&#13;Set:"/>
  56. </Border>
  57. <TextBox Tag="None" IsReadOnly="True" Margin="0,0,1,0" Text="{Binding APCData.SetPoint, StringFormat={}{0:f1}, Mode=OneWay}" />
  58. <TextBox Tag="None" IsReadOnly="True" Width="40" Text="{Binding DefaultUnit}" />
  59. </StackPanel>
  60. <StackPanel Orientation="Horizontal" >
  61. <Border>
  62. <Label Content="Condition&#13;Wait Sensor:"/>
  63. </Border>
  64. <TextBox Tag="None" IsReadOnly="True" />
  65. </StackPanel>
  66. </StackPanel>
  67. <StackPanel Orientation="Horizontal" Margin="0,10,0,0">
  68. <StackPanel Orientation="Horizontal">
  69. <Border>
  70. <Label Content="PID Table:"/>
  71. </Border>
  72. <TextBox Tag="None" IsReadOnly="True" Text="{Binding APCData.PIDTable, Mode=OneWay}"/>
  73. </StackPanel>
  74. <StackPanel Orientation="Horizontal" >
  75. <Border>
  76. <Label Content="Send Again&#13;Command:"/>
  77. </Border>
  78. <TextBox Tag="None" IsReadOnly="True" />
  79. </StackPanel>
  80. <StackPanel Orientation="Horizontal" >
  81. <Border>
  82. <Label Content="Send Again &#13;Cmd Set:"/>
  83. </Border>
  84. <TextBox Tag="None" IsReadOnly="True" Margin="0,0,1,0" />
  85. <TextBox Tag="None" IsReadOnly="True" Width="40" Text="{Binding DefaultUnit}" />
  86. </StackPanel>
  87. </StackPanel>
  88. </StackPanel>
  89. </GroupBox>
  90. <GroupBox>
  91. <GroupBox.Header>
  92. <TextBlock Text="Press Control Unit" Foreground="Black"/>
  93. </GroupBox.Header>
  94. <StackPanel Orientation="Vertical">
  95. <StackPanel Orientation="Horizontal">
  96. <StackPanel Orientation="Horizontal" >
  97. <Border>
  98. <Label Content="Set&#13;Command:"/>
  99. </Border>
  100. <TextBox Tag="None" IsReadOnly="True" Text="{Binding APCData.TextModeSetPoint, Mode=OneWay}" />
  101. </StackPanel>
  102. <StackPanel Orientation="Horizontal" >
  103. <Border>
  104. <Label Content="Set Cmd&#13;Status:"/>
  105. </Border>
  106. <TextBox Tag="None" IsReadOnly="True" Width="160"/>
  107. </StackPanel>
  108. <StackPanel Orientation="Horizontal">
  109. <Border>
  110. <Label Content="Homing&#13;Status:"/>
  111. </Border>
  112. <TextBox Tag="None" IsReadOnly="True" Text="{Binding APCData.HomeStatusDisplay, Mode=OneWay}" Width="480"/>
  113. </StackPanel>
  114. </StackPanel>
  115. <StackPanel Orientation="Horizontal" Margin="0,10,0,0">
  116. <StackPanel Orientation="Horizontal">
  117. <Border>
  118. <Label Content="APC Hard&#13;Error:"/>
  119. </Border>
  120. <TextBox Tag="None" IsReadOnly="True" Width="40" Margin="1,0,1,0"/>
  121. <TextBox Tag="None" IsReadOnly="True" Width="1000" TextWrapping="WrapWithOverflow" Text="{Binding APCData.HardError, Mode=OneWay}" />
  122. </StackPanel>
  123. </StackPanel>
  124. </StackPanel>
  125. </GroupBox>
  126. <GroupBox>
  127. <GroupBox.Header>
  128. <TextBlock Text="APC" Foreground="Black"/>
  129. </GroupBox.Header>
  130. <Canvas Height="455">
  131. <Border BorderBrush="Black" BorderThickness="1" Background="LightGray" HorizontalAlignment="Left" VerticalAlignment="Top" Canvas.Left="33" Canvas.Top="40">
  132. <StackPanel Orientation="Vertical">
  133. <Label Content="Press Control" Width="220"/>
  134. <Label Content="Control Status" Width="200"/>
  135. <TextBox Tag="None" IsReadOnly="True" Text="{Binding APCData.TextModeFeedback, Mode=OneWay}" />
  136. <Label Content="Actual"/>
  137. <StackPanel Orientation="Horizontal">
  138. <TextBox Tag="None" IsReadOnly="True" Margin="10,0,0,0"/>
  139. <TextBox Tag="None" IsReadOnly="True" Width="40"/>
  140. </StackPanel>
  141. <Label Content="Set"/>
  142. <StackPanel Orientation="Horizontal">
  143. <TextBox Tag="None" IsReadOnly="True" Margin="10,0,0,0"/>
  144. <TextBox Tag="None" IsReadOnly="True" Width="40"/>
  145. </StackPanel>
  146. <Label Content="Press Control Sensor" Width="200"/>
  147. <TextBox Tag="None" IsReadOnly="True" />
  148. </StackPanel>
  149. </Border>
  150. <controls2:PipeLine LeftDirection="None" FlowDirection="LeftToRight" RightDirection="Left" Height="18" Width="365" Canvas.Left="268" Canvas.Top="205" />
  151. <controls2:PipeLine FlowDirection="LeftToRight" LeftDirection="None" RightDirection="None" Width="98" Height="18" Canvas.Left="633" Canvas.Top="220" HorizontalAlignment="Left" VerticalAlignment="Center">
  152. <controls2:PipeLine.RenderTransform>
  153. <RotateTransform Angle="90"/>
  154. </controls2:PipeLine.RenderTransform>
  155. </controls2:PipeLine>
  156. <controls2:PipeLine FlowDirection="LeftToRight" LeftDirection="None" RightDirection="None" Width="48" Height="18" Canvas.Left="633" Canvas.Top="315" HorizontalAlignment="Left" VerticalAlignment="Center">
  157. <controls2:PipeLine.RenderTransform>
  158. <RotateTransform Angle="90"/>
  159. </controls2:PipeLine.RenderTransform>
  160. </controls2:PipeLine>
  161. <controls2:PipeLine FlowDirection="LeftToRight" LeftDirection="None" RightDirection="None" Width="48" Height="18" Canvas.Left="634" Canvas.Top="397" HorizontalAlignment="Left" VerticalAlignment="Center">
  162. <controls2:PipeLine.RenderTransform>
  163. <RotateTransform Angle="90"/>
  164. </controls2:PipeLine.RenderTransform>
  165. </controls2:PipeLine>
  166. <deviceControl:AITGasValve Canvas.Left="593" Canvas.Top="265" ValveOpenOrientation="Vertical" Width="60" Height="60" HorizontalAlignment="Center" VerticalAlignment="Top" Visibility="Hidden"/>
  167. <Border BorderBrush="Black" Background="LightGray" BorderThickness="1" Canvas.Left="573" Canvas.Top="363" HorizontalAlignment="Center" VerticalAlignment="Top">
  168. <Label Content="Pump"/>
  169. </Border>
  170. <GroupBox Canvas.Left="300" Canvas.Top="60">
  171. <GroupBox.Header>
  172. <TextBlock Text="Press Control Unit Sensor" Foreground="Black"/>
  173. </GroupBox.Header>
  174. <StackPanel Orientation="Vertical">
  175. <StackPanel Orientation="Horizontal">
  176. <Border>
  177. <Label Content="Press1"/>
  178. </Border>
  179. <TextBox Tag="None" IsReadOnly="True" Margin="0,0,1,0" Text="{Binding Pressure1Feedback, StringFormat={}{0:f3}, Mode=OneWay}" />
  180. <TextBox Tag="None" IsReadOnly="True" Width="40" Text="{Binding DefaultUnit}" />
  181. </StackPanel>
  182. <StackPanel Orientation="Horizontal">
  183. <Border>
  184. <Label Content="Press2"/>
  185. </Border>
  186. <TextBox Tag="None" IsReadOnly="True" Margin="0,0,1,0" Text="{Binding Pressure2Feedback, StringFormat={}{0:f1}, Mode=OneWay}" />
  187. <TextBox Tag="None" IsReadOnly="True" Width="40" Text="{Binding DefaultUnit}" />
  188. </StackPanel>
  189. </StackPanel>
  190. </GroupBox>
  191. <GroupBox Canvas.Left="700" Canvas.Top="210">
  192. <GroupBox.Header>
  193. <TextBlock Text="APC Valve Angle" Foreground="Black"/>
  194. </GroupBox.Header>
  195. <StackPanel Orientation="Horizontal">
  196. <TextBox Tag="None" IsReadOnly="True" Margin="0,0,1,0" Width="80" Text="{Binding APCData.PositionSetPoint, StringFormat={}{0:f1}, Mode=OneWay}" />
  197. <Label Content="/" Width="20"/>
  198. <TextBox Tag="None" IsReadOnly="True" Margin="0,0,1,0" Width="80" Text="{Binding APCData.PositionFeedback, StringFormat={}{0:f1}, Mode=OneWay}" />
  199. <Label Content="%" Width="25"/>
  200. </StackPanel>
  201. </GroupBox>
  202. <GroupBox Canvas.Left="700" Canvas.Top="300">
  203. <GroupBox.Header>
  204. <TextBlock Text="SlowVac" Foreground="Black"/>
  205. </GroupBox.Header>
  206. <StackPanel Orientation="Horizontal">
  207. <TextBox Tag="None" IsReadOnly="True" Margin="0,0,1,0" Width="80" Text="{Binding APCData.SlowRateSetPoint, StringFormat={}{0:f2}, Mode=OneWay}" />
  208. <Label Content="" Width="5"/>
  209. <TextBox Tag="None" IsReadOnly="True" Margin="0,0,1,0" Width="80" Text="{Binding _defaultUnit, Mode=OneWay}" />
  210. </StackPanel>
  211. </GroupBox>
  212. <GroupBox Canvas.Left="388" Canvas.Top="260">
  213. <GroupBox.Header>
  214. <TextBlock Text="SlowVac Check Time" Foreground="Black"/>
  215. </GroupBox.Header>
  216. <TextBox Tag="None" IsReadOnly="True" Height="32"/>
  217. </GroupBox>
  218. <Button Content="Sensor Information" Canvas.Left="953" Canvas.Top="410" Height="35" Width="200" Background="#D3D3D3">
  219. <i:Interaction.Triggers>
  220. <i:EventTrigger EventName="Click">
  221. <cal:ActionMessage MethodName="CmdMouseDown">
  222. <cal:Parameter Value="SensorInfo"></cal:Parameter>
  223. </cal:ActionMessage>
  224. </i:EventTrigger>
  225. </i:Interaction.Triggers>
  226. </Button>
  227. </Canvas>
  228. </GroupBox>
  229. </StackPanel>
  230. </TabItem>
  231. <TabItem Header="Leak Check">
  232. <StackPanel Orientation="Vertical">
  233. <StackPanel Orientation="Vertical">
  234. <StackPanel Orientation="Horizontal">
  235. <StackPanel Orientation="Horizontal">
  236. <Border>
  237. <Label Content="Leak Check&#13;Status:"/>
  238. </Border>
  239. <TextBox Tag="None" IsReadOnly="True" Text="{Binding LeakCheckStatus,Converter={StaticResource LeakCheckStatusColorConverter}}"/>
  240. </StackPanel>
  241. <StackPanel Orientation="Horizontal" >
  242. <Border>
  243. <Label Content="Leak Check&#13;Table:"/>
  244. </Border>
  245. <TextBox Tag="None" IsReadOnly="True" Text="{Binding LeakCheckTable}"/>
  246. </StackPanel>
  247. <StackPanel Orientation="Horizontal" >
  248. <Border>
  249. <Label Content="Sensor:"/>
  250. </Border>
  251. <TextBox Tag="None" IsReadOnly="True" Text="{Binding LeakCheckPressureSensorName}" />
  252. </StackPanel>
  253. </StackPanel>
  254. <StackPanel Orientation="Horizontal" Margin="0,10,0,0">
  255. <StackPanel Orientation="Horizontal">
  256. <Border>
  257. <Label Content="Retry Count:"/>
  258. </Border>
  259. <Label BorderBrush="#ccc" BorderThickness="1" Padding="5" Background="White" HorizontalContentAlignment="Center" Width="90" >
  260. <Label.Content>
  261. <StackPanel Orientation="Horizontal">
  262. <TextBlock Tag="None" Text="{Binding LeakCheckRetryCurrentCount}" />
  263. <TextBlock Tag="None" Text="/" Margin="10,0,10,0" />
  264. <TextBlock Tag="None" Text="{Binding LeakCheckRetryLimit}" />
  265. </StackPanel>
  266. </Label.Content>
  267. </Label>
  268. </StackPanel>
  269. <StackPanel Orientation="Horizontal" >
  270. <Border>
  271. <Label Content="Retry Over&#13;Command:"/>
  272. </Border>
  273. <TextBox Tag="None" IsReadOnly="True" Text="{Binding LeakCheckRetryOverCommand}"/>
  274. </StackPanel>
  275. </StackPanel>
  276. </StackPanel>
  277. <Grid>
  278. <Grid.ColumnDefinitions>
  279. <ColumnDefinition/>
  280. <ColumnDefinition/>
  281. <ColumnDefinition/>
  282. </Grid.ColumnDefinitions>
  283. <GroupBox >
  284. <GroupBox.Header>
  285. <TextBlock Text="Base Pressure Check" Foreground="Black"/>
  286. </GroupBox.Header>
  287. <StackPanel Orientation="Vertical">
  288. <GroupBox Margin="0,10,0,0">
  289. <GroupBox.Header>
  290. <TextBlock Text="Pressure High Limit" Foreground="Black"/>
  291. </GroupBox.Header>
  292. <StackPanel Orientation="Vertical">
  293. <StackPanel Orientation="Horizontal">
  294. <Border>
  295. <Label Content="PH(Torr):" Width="130"/>
  296. </Border>
  297. <TextBox Tag="None" IsReadOnly="True" Text="{Binding LeakCheckHighLimit ,UpdateSourceTrigger=PropertyChanged, StringFormat={}{0:F3}}" Width="235"/>
  298. </StackPanel>
  299. <StackPanel Orientation="Horizontal">
  300. <Border>
  301. <Label Content="Error Command:" Width="130"/>
  302. </Border>
  303. <TextBox Tag="None" IsReadOnly="True" Text="{Binding LeakCheckHightLimitCommand ,UpdateSourceTrigger=PropertyChanged}" Width="235"/>
  304. </StackPanel>
  305. </StackPanel>
  306. </GroupBox>
  307. <GroupBox Margin="0,10,0,0">
  308. <GroupBox.Header>
  309. <TextBlock Text="Pressure Low Limit" Foreground="Black"/>
  310. </GroupBox.Header>
  311. <StackPanel Orientation="Vertical">
  312. <StackPanel Orientation="Horizontal">
  313. <Border>
  314. <Label Content="PL(Torr):" Width="130"/>
  315. </Border>
  316. <TextBox Tag="None" IsReadOnly="True" Text="{Binding LeakCheckLowLimit ,UpdateSourceTrigger=PropertyChanged, StringFormat={}{0:F3}}" Width="235"/>
  317. </StackPanel>
  318. <StackPanel Orientation="Horizontal">
  319. <Border>
  320. <Label Content="Error Command:" Width="130"/>
  321. </Border>
  322. <TextBox Tag="None" IsReadOnly="True" Text="{Binding LeakCheckLowLimitCommand ,UpdateSourceTrigger=PropertyChanged}" Width="235"/>
  323. </StackPanel>
  324. </StackPanel>
  325. </GroupBox>
  326. <GroupBox Margin="0,10,0,0">
  327. <GroupBox.Header>
  328. <TextBlock Text="Base Pressure" Foreground="Black"/>
  329. </GroupBox.Header>
  330. <StackPanel Orientation="Vertical">
  331. <StackPanel Orientation="Horizontal">
  332. <Border>
  333. <Label Content="BP(Torr):" Width="130"/>
  334. </Border>
  335. <TextBox Tag="None" IsReadOnly="True" Text="{Binding LeakCheckBasePressure ,UpdateSourceTrigger=PropertyChanged, StringFormat={}{0:F3}}" Width="235"/>
  336. </StackPanel>
  337. </StackPanel>
  338. </GroupBox>
  339. <GroupBox Margin="0,10,0,0">
  340. <GroupBox.Header>
  341. <TextBlock Text="Base Pressure Limit" Foreground="Black"/>
  342. </GroupBox.Header>
  343. <StackPanel Orientation="Vertical">
  344. <StackPanel Orientation="Horizontal">
  345. <Border>
  346. <Label Content="BPLimit(Torr):" Width="130"/>
  347. </Border>
  348. <TextBox Tag="None" IsReadOnly="True" Text="{Binding LeakCheckBasePressureLimit ,UpdateSourceTrigger=PropertyChanged, StringFormat={}{0:F3}}" Width="235"/>
  349. </StackPanel>
  350. <StackPanel Orientation="Horizontal">
  351. <Border>
  352. <Label Content="Error Command:" Width="130"/>
  353. </Border>
  354. <TextBox Tag="None" IsReadOnly="True" Text="{Binding LeakCheckBasePressureLimitCommand ,UpdateSourceTrigger=PropertyChanged}" Width="235"/>
  355. </StackPanel>
  356. </StackPanel>
  357. </GroupBox>
  358. </StackPanel>
  359. </GroupBox>
  360. <GroupBox Grid.Column="1">
  361. <GroupBox.Header>
  362. <TextBlock Text="Leak Check Delay" Foreground="Black"/>
  363. </GroupBox.Header>
  364. <StackPanel Orientation="Vertical">
  365. <StackPanel Orientation="Horizontal">
  366. <Border>
  367. <Label Content="Leak Check&#13;Delay Time:" Width="100"/>
  368. </Border>
  369. <TextBox Tag="None" IsReadOnly="True" Text="{Binding LeakCheckDelayElapseTime ,UpdateSourceTrigger=PropertyChanged}" Width="120"/>
  370. <Label Content="/" Width="20"/>
  371. <TextBox Tag="None" IsReadOnly="True" Text="{Binding LeakCheckDelayTime ,UpdateSourceTrigger=PropertyChanged}" Width="120"/>
  372. </StackPanel>
  373. <ProgressBar Width="380" Height="40" Margin="0,10,0,0" Value="{Binding LeakCheckDelayProGress,UpdateSourceTrigger=PropertyChanged}" Maximum="100"/>
  374. <StackPanel Orientation="Horizontal" Margin="0,10,0,0">
  375. <Border>
  376. <Label Content="Monitor Pressure(Torr):" Width="170" />
  377. </Border>
  378. <TextBox Tag="None" IsReadOnly="True" Text="{Binding LeakCheckDelayMonitorPressure ,UpdateSourceTrigger=PropertyChanged, StringFormat={}{0:F3}}" Width="220" Margin="0"/>
  379. </StackPanel>
  380. <StackPanel Orientation="Horizontal" Margin="0,10,0,0">
  381. <Border>
  382. <Label Content="Start Pressure(Torr):" Width="170" />
  383. </Border>
  384. <TextBox Tag="None" IsReadOnly="True" Text="{Binding LeakCheckDelayStartPressure ,UpdateSourceTrigger=PropertyChanged, StringFormat={}{0:F3}}" Width="220" Margin="0"/>
  385. </StackPanel>
  386. </StackPanel>
  387. </GroupBox>
  388. <GroupBox Grid.Column="2">
  389. <GroupBox.Header>
  390. <TextBlock Text="Leak Check" Foreground="Black"/>
  391. </GroupBox.Header>
  392. <StackPanel Orientation="Vertical">
  393. <StackPanel Orientation="Horizontal">
  394. <Border>
  395. <Label Content="Leak Check&#13;Time:" Width="100"/>
  396. </Border>
  397. <TextBox Tag="None" IsReadOnly="True" Text="{Binding LeakCheckElapseTime ,UpdateSourceTrigger=PropertyChanged}" Width="120"/>
  398. <Label Content="/" Width="20"/>
  399. <TextBox Tag="None" IsReadOnly="True" Text="{Binding LeakCheckCheckTime ,UpdateSourceTrigger=PropertyChanged}" Width="120"/>
  400. </StackPanel>
  401. <ProgressBar Width="380" Height="40" Margin="0,10,0,0" Value="{Binding LeakCheckProGress ,UpdateSourceTrigger=PropertyChanged}" Maximum="100"/>
  402. <GroupBox>
  403. <GroupBox.Header>
  404. <TextBlock Text="Leak Limit" Foreground="Black"/>
  405. </GroupBox.Header>
  406. <StackPanel Orientation="Vertical">
  407. <StackPanel Orientation="Horizontal">
  408. <Border>
  409. <Label Content="Leak Limit(Torr):" Width="130"/>
  410. </Border>
  411. <TextBox Tag="None" IsReadOnly="True" Text="{Binding LeakCheckLeakLimit ,UpdateSourceTrigger=PropertyChanged, StringFormat={}{0:F3}}" Width="235"/>
  412. </StackPanel>
  413. <StackPanel Orientation="Horizontal">
  414. <Border>
  415. <Label Content="Error Command:" Width="130"/>
  416. </Border>
  417. <TextBox Tag="None" IsReadOnly="True" Text="{Binding LeakCheckErrorCommand ,UpdateSourceTrigger=PropertyChanged}" Width="235"/>
  418. </StackPanel>
  419. </StackPanel>
  420. </GroupBox>
  421. <StackPanel Orientation="Horizontal" Margin="0,10,0,0">
  422. <Border>
  423. <Label Content="Actual(Torr):" Width="160" />
  424. </Border>
  425. <TextBox Tag="None" IsReadOnly="True" Text="{Binding LeakCheckActualLeak ,UpdateSourceTrigger=PropertyChanged, StringFormat={}{0:F3}}" Width="220" Margin="0"/>
  426. </StackPanel>
  427. <StackPanel Orientation="Horizontal" Margin="0,10,0,0">
  428. <Border>
  429. <Label Content="Monitor Pressure(Torr):" Width="160" />
  430. </Border>
  431. <TextBox Tag="None" IsReadOnly="True" Text="{Binding LeakCheckMonitorPressure ,UpdateSourceTrigger=PropertyChanged, StringFormat={}{0:F3}}" Width="220" Margin="0"/>
  432. </StackPanel>
  433. <StackPanel Orientation="Horizontal" Margin="0,10,0,0">
  434. <Border>
  435. <Label Content="Start Pressure(Torr):" Width="160" />
  436. </Border>
  437. <TextBox Tag="None" IsReadOnly="True" Text="{Binding LeakCheckStartPressure ,UpdateSourceTrigger=PropertyChanged, StringFormat={}{0:F3}}" Width="220" Margin="0"/>
  438. </StackPanel>
  439. </StackPanel>
  440. </GroupBox>
  441. </Grid>
  442. </StackPanel>
  443. </TabItem>
  444. </TabControl>
  445. </Grid>
  446. </UserControl>