PressureDetailView.xaml 32 KB

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