PressureDetailView.xaml 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462
  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 APCData.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 APCData.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. <TextBox Tag="None" IsReadOnly="True" Text="{Binding LeakCheckRetryCurrentCount}"/>
  258. </StackPanel>
  259. <StackPanel Orientation="Horizontal" >
  260. <Border>
  261. <Label Content="Retry Over&#13;Command:"/>
  262. </Border>
  263. <TextBox Tag="None" IsReadOnly="True" Text="{Binding LeakCheckRetryOverCommand}"/>
  264. </StackPanel>
  265. </StackPanel>
  266. </StackPanel>
  267. <Grid>
  268. <Grid.ColumnDefinitions>
  269. <ColumnDefinition/>
  270. <ColumnDefinition/>
  271. <ColumnDefinition/>
  272. </Grid.ColumnDefinitions>
  273. <GroupBox >
  274. <GroupBox.Header>
  275. <TextBlock Text="Base Pressure Check" Foreground="Black"/>
  276. </GroupBox.Header>
  277. <StackPanel Orientation="Vertical">
  278. <GroupBox Margin="0,10,0,0">
  279. <GroupBox.Header>
  280. <TextBlock Text="Pressure High Limit" Foreground="Black"/>
  281. </GroupBox.Header>
  282. <StackPanel Orientation="Vertical">
  283. <StackPanel Orientation="Horizontal">
  284. <Border>
  285. <Label Content="PH(Pa):" Width="130"/>
  286. </Border>
  287. <TextBox Tag="None" IsReadOnly="True" Text="{Binding LeakCheckHighLimit ,UpdateSourceTrigger=PropertyChanged}" Width="235"/>
  288. </StackPanel>
  289. <StackPanel Orientation="Horizontal">
  290. <Border>
  291. <Label Content="Error Command:" Width="130"/>
  292. </Border>
  293. <TextBox Tag="None" IsReadOnly="True" Text="{Binding LeakCheckHightLimitCommand ,UpdateSourceTrigger=PropertyChanged}" Width="235"/>
  294. </StackPanel>
  295. </StackPanel>
  296. </GroupBox>
  297. <GroupBox Margin="0,10,0,0">
  298. <GroupBox.Header>
  299. <TextBlock Text="Pressure Low Limit" Foreground="Black"/>
  300. </GroupBox.Header>
  301. <StackPanel Orientation="Vertical">
  302. <StackPanel Orientation="Horizontal">
  303. <Border>
  304. <Label Content="PL(Pa):" Width="130"/>
  305. </Border>
  306. <TextBox Tag="None" IsReadOnly="True" Text="{Binding LeakCheckLowLimit ,UpdateSourceTrigger=PropertyChanged}" Width="235"/>
  307. </StackPanel>
  308. <StackPanel Orientation="Horizontal">
  309. <Border>
  310. <Label Content="Error Command:" Width="130"/>
  311. </Border>
  312. <TextBox Tag="None" IsReadOnly="True" Text="{Binding LeakCheckLowLimitCommand ,UpdateSourceTrigger=PropertyChanged}" Width="235"/>
  313. </StackPanel>
  314. </StackPanel>
  315. </GroupBox>
  316. <GroupBox Margin="0,10,0,0">
  317. <GroupBox.Header>
  318. <TextBlock Text="Base Pressure" Foreground="Black"/>
  319. </GroupBox.Header>
  320. <StackPanel Orientation="Vertical">
  321. <StackPanel Orientation="Horizontal">
  322. <Border>
  323. <Label Content="BP(Pa):" Width="130"/>
  324. </Border>
  325. <TextBox Tag="None" IsReadOnly="True" Text="{Binding LeakCheckBasePressure ,UpdateSourceTrigger=PropertyChanged}" Width="235"/>
  326. </StackPanel>
  327. </StackPanel>
  328. </GroupBox>
  329. <GroupBox Margin="0,10,0,0">
  330. <GroupBox.Header>
  331. <TextBlock Text="Base Pressure Limit" Foreground="Black"/>
  332. </GroupBox.Header>
  333. <StackPanel Orientation="Vertical">
  334. <StackPanel Orientation="Horizontal">
  335. <Border>
  336. <Label Content="BPLimit(Pa):" Width="130"/>
  337. </Border>
  338. <TextBox Tag="None" IsReadOnly="True" Text="{Binding LeakCheckBasePressureLimit ,UpdateSourceTrigger=PropertyChanged}" Width="235"/>
  339. </StackPanel>
  340. <StackPanel Orientation="Horizontal">
  341. <Border>
  342. <Label Content="Error Command:" Width="130"/>
  343. </Border>
  344. <TextBox Tag="None" IsReadOnly="True" Text="{Binding LeakCheckBasePressureLimitCommand ,UpdateSourceTrigger=PropertyChanged}" Width="235"/>
  345. </StackPanel>
  346. </StackPanel>
  347. </GroupBox>
  348. </StackPanel>
  349. </GroupBox>
  350. <GroupBox Grid.Column="1">
  351. <GroupBox.Header>
  352. <TextBlock Text="Leak Check Delay" Foreground="Black"/>
  353. </GroupBox.Header>
  354. <StackPanel Orientation="Vertical">
  355. <StackPanel Orientation="Horizontal">
  356. <Border>
  357. <Label Content="Leak Check&#13;Delay Time:" Width="100"/>
  358. </Border>
  359. <TextBox Tag="None" IsReadOnly="True" Text="{Binding LeakCheckDelayElapseTime ,UpdateSourceTrigger=PropertyChanged}" Width="120"/>
  360. <Label Content="/" Width="20"/>
  361. <TextBox Tag="None" IsReadOnly="True" Text="{Binding LeakCheckDelayTime ,UpdateSourceTrigger=PropertyChanged}" Width="120"/>
  362. </StackPanel>
  363. <ProgressBar Width="380" Height="40" Margin="0,10,0,0" Value="{Binding LeakCheckDelayProGress,UpdateSourceTrigger=PropertyChanged}" Maximum="100"/>
  364. <StackPanel Orientation="Horizontal" Margin="0,10,0,0">
  365. <Border>
  366. <Label Content="Monitor Pressure(Pa):" Width="160" />
  367. </Border>
  368. <TextBox Tag="None" IsReadOnly="True" Text="{Binding LeakCheckDelayMonitorPressure ,UpdateSourceTrigger=PropertyChanged}" Width="220" Margin="0"/>
  369. </StackPanel>
  370. <StackPanel Orientation="Horizontal" Margin="0,10,0,0">
  371. <Border>
  372. <Label Content="Start Pressure(Pa):" Width="160" />
  373. </Border>
  374. <TextBox Tag="None" IsReadOnly="True" Text="{Binding LeakCheckDelayStartPressure ,UpdateSourceTrigger=PropertyChanged}" Width="220" Margin="0"/>
  375. </StackPanel>
  376. </StackPanel>
  377. </GroupBox>
  378. <GroupBox Grid.Column="2">
  379. <GroupBox.Header>
  380. <TextBlock Text="Leak Check" Foreground="Black"/>
  381. </GroupBox.Header>
  382. <StackPanel Orientation="Vertical">
  383. <StackPanel Orientation="Horizontal">
  384. <Border>
  385. <Label Content="Leak Check&#13;Time:" Width="100"/>
  386. </Border>
  387. <TextBox Tag="None" IsReadOnly="True" Text="{Binding LeakCheckElapseTime ,UpdateSourceTrigger=PropertyChanged}" Width="120"/>
  388. <Label Content="/" Width="20"/>
  389. <TextBox Tag="None" IsReadOnly="True" Text="{Binding LeakCheckCheckTime ,UpdateSourceTrigger=PropertyChanged}" Width="120"/>
  390. </StackPanel>
  391. <ProgressBar Width="380" Height="40" Margin="0,10,0,0" Value="{Binding LeakCheckProGress ,UpdateSourceTrigger=PropertyChanged}" Maximum="100"/>
  392. <GroupBox>
  393. <GroupBox.Header>
  394. <TextBlock Text="Leak Limit" Foreground="Black"/>
  395. </GroupBox.Header>
  396. <StackPanel Orientation="Vertical">
  397. <StackPanel Orientation="Horizontal">
  398. <Border>
  399. <Label Content="Leak Limit(Pa):" Width="130"/>
  400. </Border>
  401. <TextBox Tag="None" IsReadOnly="True" Text="{Binding LeakCheckLeakLimit ,UpdateSourceTrigger=PropertyChanged}" Width="235"/>
  402. </StackPanel>
  403. <StackPanel Orientation="Horizontal">
  404. <Border>
  405. <Label Content="Error Command:" Width="130"/>
  406. </Border>
  407. <TextBox Tag="None" IsReadOnly="True" Text="{Binding LeakCheckErrorCommand ,UpdateSourceTrigger=PropertyChanged}" Width="235"/>
  408. </StackPanel>
  409. </StackPanel>
  410. </GroupBox>
  411. <StackPanel Orientation="Horizontal" Margin="0,10,0,0">
  412. <Border>
  413. <Label Content="Actual(Pa):" Width="160" />
  414. </Border>
  415. <TextBox Tag="None" IsReadOnly="True" Text="{Binding LeakCheckActualLeak ,UpdateSourceTrigger=PropertyChanged}" Width="220" Margin="0"/>
  416. </StackPanel>
  417. <StackPanel Orientation="Horizontal" Margin="0,10,0,0">
  418. <Border>
  419. <Label Content="Monitor Pressure(Pa):" Width="160" />
  420. </Border>
  421. <TextBox Tag="None" IsReadOnly="True" Text="{Binding LeakCheckMonitorPressure ,UpdateSourceTrigger=PropertyChanged}" Width="220" Margin="0"/>
  422. </StackPanel>
  423. <StackPanel Orientation="Horizontal" Margin="0,10,0,0">
  424. <Border>
  425. <Label Content="Start Pressure(Pa):" Width="160" />
  426. </Border>
  427. <TextBox Tag="None" IsReadOnly="True" Text="{Binding LeakCheckStartPressure ,UpdateSourceTrigger=PropertyChanged}" Width="220" Margin="0"/>
  428. </StackPanel>
  429. </StackPanel>
  430. </GroupBox>
  431. </Grid>
  432. </StackPanel>
  433. </TabItem>
  434. </TabControl>
  435. </Grid>
  436. </UserControl>