OverView.xaml 48 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597
  1. <UserControl x:Class="VirgoUI.Client.Models.Operate.OverView"
  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:i="http://schemas.microsoft.com/expression/2010/interactivity"
  7. xmlns:cal="http://www.caliburn.org"
  8. xmlns:ctrl="http://OpenSEMI.Ctrlib.com/presentation"
  9. xmlns:local="clr-namespace:VirgoUI.Client.Models.Controls"
  10. xmlns:parts="clr-namespace:VirgoUI.Controls.Parts"
  11. xmlns:wa="clr-namespace:VirgoUI.Client.Models.Operate"
  12. xmlns:parts1="clr-namespace:VirgoUI.Client.Controls.Parts"
  13. xmlns:deviceControl="clr-namespace:Aitex.Core.UI.DeviceControl;assembly=MECF.Framework.UI.Core"
  14. xmlns:waferAssociation="clr-namespace:VirgoUI.Client.Models.Operate.WaferAssociation"
  15. xmlns:converters="clr-namespace:Aitex.Core.UI.Converters;assembly=MECF.Framework.UI.Core"
  16. mc:Ignorable="d"
  17. d:DesignHeight="700" d:DesignWidth="1600">
  18. <UserControl.Resources>
  19. <converters:enum2BoolConverter x:Key="enum2BoolConverter"/>
  20. <converters:bool2VisibilityConverter x:Key="bool2VisibilityConvert"/>
  21. <Style TargetType="{x:Type Button}" x:Key="BtnControl" BasedOn="{StaticResource ResourceKey={x:Type Button}}">
  22. <Setter Property="Button.IsEnabled" Value="False" />
  23. <Style.Triggers>
  24. <DataTrigger Binding="{Binding ButtonControl}" Value="False">
  25. <Setter Property="Button.IsEnabled" Value="True"/>
  26. </DataTrigger>
  27. </Style.Triggers>
  28. </Style>
  29. <Style TargetType="{x:Type Button}" x:Key="BtnControl2" BasedOn="{StaticResource ResourceKey={x:Type Button}}">
  30. <Setter Property="Button.IsEnabled" Value="False" />
  31. <Style.Triggers>
  32. <MultiDataTrigger>
  33. <MultiDataTrigger.Conditions>
  34. <Condition Binding="{Binding Permission}" Value="1"></Condition>
  35. <Condition Binding="{Binding enable}" Value="True"></Condition>
  36. <Condition Binding="{Binding CurrentPM.Online}" Value="0"></Condition>
  37. </MultiDataTrigger.Conditions>
  38. <Setter Property="Button.IsEnabled" Value="True"/>
  39. </MultiDataTrigger>
  40. </Style.Triggers>
  41. </Style>
  42. </UserControl.Resources>
  43. <ScrollViewer HorizontalScrollBarVisibility="Disabled" VerticalScrollBarVisibility="Auto" Margin="0">
  44. <Grid>
  45. <Grid.ColumnDefinitions>
  46. <ColumnDefinition Width="*"/>
  47. <ColumnDefinition Width="Auto" MinWidth="310"/>
  48. <ColumnDefinition Width="Auto"/>
  49. </Grid.ColumnDefinitions>
  50. <Grid Grid.Column="0">
  51. <Canvas VerticalAlignment="Top" HorizontalAlignment="Center" Width="1050" Height="700" Margin="0,0">
  52. <parts1:EquipmentTopView x:Name="mf" Canvas.Left="192" Canvas.Top="-8"/>
  53. <parts1:SingleArmRobot Canvas.Left="500" Canvas.Top="310" RobotMoveInfo="{Binding EfemRobotMoveInfo}"/>
  54. <local:EFEMFrontView UnitData="{Binding EFEM}" Canvas.Left="846" Canvas.Top="357" />
  55. <Grid x:Name="PMA_Info" Canvas.Top="3" Canvas.Left="31">
  56. <Grid.ColumnDefinitions>
  57. <ColumnDefinition Width="100"/>
  58. <ColumnDefinition Width="170"/>
  59. </Grid.ColumnDefinitions>
  60. <Grid.RowDefinitions>
  61. <RowDefinition Height="Auto"/>
  62. <RowDefinition Height="24"/>
  63. <RowDefinition Height="24"/>
  64. <RowDefinition Height="24"/>
  65. <RowDefinition Height="24"/>
  66. <RowDefinition Height="24"/>
  67. <RowDefinition Height="24"/>
  68. <RowDefinition Height="24"/>
  69. </Grid.RowDefinitions>
  70. <TextBlock Grid.ColumnSpan="2" Text="腔体A" FontFamily="Arial" FontSize="14" Foreground="{DynamicResource FG_Black}" HorizontalAlignment="Center" VerticalAlignment="Center" Margin="0,0,0,3"/>
  71. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1" Background="{DynamicResource Table_BG_Title}" Grid.Row="1" Padding="5,1">
  72. <TextBlock Text="状态" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" FontFamily="Arial" VerticalAlignment="Center"/>
  73. </Border>
  74. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,1,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="1" Grid.Column="1" Padding="5,1">
  75. <TextBlock Text="{Binding PMAServiceStatus}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" FontFamily="Arial" VerticalAlignment="Center"/>
  76. </Border>
  77. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="2" Padding="5,1">
  78. <TextBlock Text="工艺名称" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" FontFamily="Arial" VerticalAlignment="Center"/>
  79. </Border>
  80. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="2" Grid.Column="1" Padding="5,1">
  81. <TextBlock Text="{Binding PMARecipeName}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" FontFamily="Arial" VerticalAlignment="Center"/>
  82. </Border>
  83. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="3" Padding="5,1">
  84. <TextBlock Text="工艺步数" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" FontFamily="Arial" VerticalAlignment="Center"/>
  85. </Border>
  86. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="3" Grid.Column="1" Padding="5,1">
  87. <TextBlock Text="{Binding PMAStepNo}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" FontFamily="Arial" VerticalAlignment="Center"/>
  88. </Border>
  89. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="4" Padding="5,1">
  90. <TextBlock Text="工艺步名" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" FontFamily="Arial" VerticalAlignment="Center"/>
  91. </Border>
  92. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="4" Grid.Column="1" Padding="5,1">
  93. <TextBlock Text="{Binding PMAStepName}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" FontFamily="Arial" VerticalAlignment="Center"/>
  94. </Border>
  95. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="5" Padding="5,1">
  96. <TextBlock Text="运行时间" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" FontFamily="Arial" VerticalAlignment="Center"/>
  97. </Border>
  98. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="5" Grid.Column="1" Padding="5,1">
  99. <TextBlock Text="{Binding PMARemainTime}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" FontFamily="Arial" VerticalAlignment="Center"/>
  100. </Border>
  101. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="6" Padding="5,1">
  102. <TextBlock Text="压力 (mTorr)" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" FontFamily="Arial" VerticalAlignment="Center"/>
  103. </Border>
  104. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="6" Grid.Column="1" Padding="5,1">
  105. <TextBlock Text="{Binding PMAChamberPressure, StringFormat={}{0:F0}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" FontFamily="Arial" VerticalAlignment="Center"/>
  106. </Border>
  107. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="7" Padding="5,1">
  108. <TextBlock Text="温度 (℃)" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" FontFamily="Arial" VerticalAlignment="Center"/>
  109. </Border>
  110. <Border BorderBrush="{DynamicResource Table_BD}" Visibility="{Binding Path=IsPMAHeaterVisibility, Converter={StaticResource bool2VisibilityConvert}}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="7" Grid.Column="1" Padding="5,1">
  111. <TextBlock Text="{Binding PMATemperature, StringFormat={}{0:F1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" FontFamily="Arial" VerticalAlignment="Center"/>
  112. </Border>
  113. <Border BorderBrush="{DynamicResource Table_BD}" Visibility="{Binding Path=IsPMAChillerVisibility, Converter={StaticResource bool2VisibilityConvert}}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="7" Grid.Column="1" Padding="5,1">
  114. <TextBlock Text="{Binding PMAChillerTemperature, StringFormat={}{0:F1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" FontFamily="Arial" VerticalAlignment="Center"/>
  115. </Border>
  116. </Grid>
  117. <Grid x:Name="PMB_Info" Canvas.Top="3" Canvas.Left="726">
  118. <Grid.ColumnDefinitions>
  119. <ColumnDefinition Width="100"/>
  120. <ColumnDefinition Width="170"/>
  121. </Grid.ColumnDefinitions>
  122. <Grid.RowDefinitions>
  123. <RowDefinition Height="Auto"/>
  124. <RowDefinition Height="24"/>
  125. <RowDefinition Height="24"/>
  126. <RowDefinition Height="24"/>
  127. <RowDefinition Height="24"/>
  128. <RowDefinition Height="24"/>
  129. <RowDefinition Height="24"/>
  130. <RowDefinition Height="24"/>
  131. </Grid.RowDefinitions>
  132. <TextBlock Grid.ColumnSpan="2" Text="腔体B" FontFamily="Arial" FontSize="14" Foreground="{DynamicResource FG_Black}" HorizontalAlignment="Center" VerticalAlignment="Center" Margin="0,0,0,3"/>
  133. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1" Background="{DynamicResource Table_BG_Title}" Grid.Row="1" Padding="5,1">
  134. <TextBlock Text="状态" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" FontFamily="Arial" VerticalAlignment="Center"/>
  135. </Border>
  136. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,1,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="1" Grid.Column="1" Padding="5,1">
  137. <TextBlock Text="{Binding PMBServiceStatus}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" FontFamily="Arial" VerticalAlignment="Center"/>
  138. </Border>
  139. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="2" Padding="5,1">
  140. <TextBlock Text="工艺名称" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" FontFamily="Arial" VerticalAlignment="Center"/>
  141. </Border>
  142. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="2" Grid.Column="1" Padding="5,1">
  143. <TextBlock Text="{Binding PMBRecipeName}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" FontFamily="Arial" VerticalAlignment="Center"/>
  144. </Border>
  145. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="3" Padding="5,1">
  146. <TextBlock Text="工艺步数" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" FontFamily="Arial" VerticalAlignment="Center"/>
  147. </Border>
  148. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="3" Grid.Column="1" Padding="5,1">
  149. <TextBlock Text="{Binding PMBStepNo}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" FontFamily="Arial" VerticalAlignment="Center"/>
  150. </Border>
  151. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="4" Padding="5,1">
  152. <TextBlock Text="工艺步名" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" FontFamily="Arial" VerticalAlignment="Center"/>
  153. </Border>
  154. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="4" Grid.Column="1" Padding="5,1">
  155. <TextBlock Text="{Binding PMBStepName}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" FontFamily="Arial" VerticalAlignment="Center"/>
  156. </Border>
  157. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="5" Padding="5,1">
  158. <TextBlock Text="运行时间" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" FontFamily="Arial" VerticalAlignment="Center"/>
  159. </Border>
  160. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="5" Grid.Column="1" Padding="5,1">
  161. <TextBlock Text="{Binding PMBRemainTime}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" FontFamily="Arial" VerticalAlignment="Center"/>
  162. </Border>
  163. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="6" Padding="5,1">
  164. <TextBlock Text="压力 (mTorr)" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" FontFamily="Arial" VerticalAlignment="Center"/>
  165. </Border>
  166. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="6" Grid.Column="1" Padding="5,1">
  167. <TextBlock Text="{Binding PMBChamberPressure, StringFormat={}{0:F0}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" FontFamily="Arial" VerticalAlignment="Center"/>
  168. </Border>
  169. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="7" Padding="5,1">
  170. <TextBlock Text="温度 (℃)" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" FontFamily="Arial" VerticalAlignment="Center"/>
  171. </Border>
  172. <Border BorderBrush="{DynamicResource Table_BD}" Visibility="{Binding Path=IsPMBHeaterVisibility, Converter={StaticResource bool2VisibilityConvert}}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="7" Grid.Column="1" Padding="5,1">
  173. <TextBlock Text="{Binding PMBTemperature, StringFormat={}{0:F1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" FontFamily="Arial" VerticalAlignment="Center"/>
  174. </Border>
  175. <Border BorderBrush="{DynamicResource Table_BD}" Visibility="{Binding Path=IsPMBChillerVisibility, Converter={StaticResource bool2VisibilityConvert}}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="7" Grid.Column="1" Padding="5,1">
  176. <TextBlock Text="{Binding PMBChillerTemperature, StringFormat={}{0:F1}}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" FontFamily="Arial" VerticalAlignment="Center"/>
  177. </Border>
  178. </Grid>
  179. <!--<StackPanel Canvas.Left="227" Canvas.Top="500">
  180. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1" Background="{DynamicResource Table_BG_Title}" Grid.Row="1" Padding="5,1">
  181. <TextBlock Text="EFEM 前门" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" FontFamily="黑体" VerticalAlignment="Center"/>
  182. </Border>
  183. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="1" Grid.Column="1" Padding="5,1">
  184. -->
  185. <!--<deviceControl:AITSensor Margin="5,0" IsInterlockMode="True" DeviceData="{Binding CassetteDoorStatus}"/>-->
  186. <!--
  187. <deviceControl:AITSensor Margin="5,0" GreenColor="True" LightOnValue="{Binding CassetteDoorStatus,Converter={StaticResource enum2BoolConverter}}"/>
  188. </Border>
  189. </StackPanel>-->
  190. <StackPanel Canvas.Left="372" Canvas.Top="625">
  191. <StackPanel.RenderTransform>
  192. <TransformGroup>
  193. <ScaleTransform/>
  194. <SkewTransform/>
  195. <RotateTransform/>
  196. <TranslateTransform/>
  197. </TransformGroup>
  198. </StackPanel.RenderTransform>
  199. <StackPanel.Resources>
  200. <Storyboard x:Key="CoverOpen">
  201. <DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[2].(RotateTransform.Angle)">
  202. <EasingDoubleKeyFrame KeyTime="0" Value="0"/>
  203. <EasingDoubleKeyFrame KeyTime="0:0:0.3" Value="60"/>
  204. </DoubleAnimationUsingKeyFrames>
  205. </Storyboard>
  206. <Storyboard x:Key="CoverClose">
  207. <DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[2].(RotateTransform.Angle)">
  208. <EasingDoubleKeyFrame KeyTime="0" Value="60"/>
  209. <EasingDoubleKeyFrame KeyTime="0:0:0.3" Value="0"/>
  210. </DoubleAnimationUsingKeyFrames>
  211. </Storyboard>
  212. </StackPanel.Resources>
  213. <StackPanel.Style>
  214. <Style>
  215. <Style.Triggers>
  216. <DataTrigger Binding="{Binding CassetteDoorStatus,Converter={StaticResource enum2BoolConverter}}" Value="false">
  217. <DataTrigger.EnterActions>
  218. <BeginStoryboard Storyboard="{StaticResource CoverOpen}"/>
  219. </DataTrigger.EnterActions>
  220. <DataTrigger.ExitActions>
  221. <BeginStoryboard Storyboard="{StaticResource CoverClose}"/>
  222. </DataTrigger.ExitActions>
  223. </DataTrigger>
  224. </Style.Triggers>
  225. </Style>
  226. </StackPanel.Style>
  227. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1" Background="{DynamicResource FOUP_OuterBG}" Height="8" Width="150"></Border>
  228. </StackPanel>
  229. <StackPanel Canvas.Left="672" Canvas.Top="633">
  230. <StackPanel.RenderTransform>
  231. <TransformGroup>
  232. <ScaleTransform/>
  233. <SkewTransform/>
  234. <RotateTransform Angle="180" />
  235. <TranslateTransform/>
  236. </TransformGroup>
  237. </StackPanel.RenderTransform>
  238. <StackPanel.Resources>
  239. <Storyboard x:Key="CoverOpen">
  240. <DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[2].(RotateTransform.Angle)">
  241. <EasingDoubleKeyFrame KeyTime="0" Value="180"/>
  242. <EasingDoubleKeyFrame KeyTime="0:0:0.3" Value="120"/>
  243. </DoubleAnimationUsingKeyFrames>
  244. </Storyboard>
  245. <Storyboard x:Key="CoverClose">
  246. <DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[2].(RotateTransform.Angle)">
  247. <EasingDoubleKeyFrame KeyTime="0" Value="120"/>
  248. <EasingDoubleKeyFrame KeyTime="0:0:0.3" Value="180"/>
  249. </DoubleAnimationUsingKeyFrames>
  250. </Storyboard>
  251. </StackPanel.Resources>
  252. <StackPanel.Style>
  253. <Style>
  254. <Style.Triggers>
  255. <DataTrigger Binding="{Binding CassetteDoorStatus,Converter={StaticResource enum2BoolConverter}}" Value="false">
  256. <DataTrigger.EnterActions>
  257. <BeginStoryboard Storyboard="{StaticResource CoverOpen}"/>
  258. </DataTrigger.EnterActions>
  259. <DataTrigger.ExitActions>
  260. <BeginStoryboard Storyboard="{StaticResource CoverClose}"/>
  261. </DataTrigger.ExitActions>
  262. </DataTrigger>
  263. </Style.Triggers>
  264. </Style>
  265. </StackPanel.Style>
  266. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1" Background="{DynamicResource FOUP_OuterBG}" Height="8" Width="150"></Border>
  267. </StackPanel>
  268. <StackPanel Canvas.Left="445" Canvas.Top="645" Visibility="{Binding CassetteDoorIsOpened}">
  269. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1" Background="Yellow">
  270. <TextBlock Text=" Cassette Door Opened " TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" FontFamily="Arial" VerticalAlignment="Center"/>
  271. </Border>
  272. </StackPanel>
  273. <StackPanel Canvas.Left="250" Canvas.Top="500" >
  274. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1" Background="{DynamicResource Table_BG_Title}" Padding="5,1">
  275. <TextBlock Text="LP1 Wafer Size" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" FontFamily="Arial" VerticalAlignment="Center"/>
  276. </Border>
  277. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Content}" Padding="5,1">
  278. <TextBlock Text="{Binding WaferSizeLP1}" TextWrapping="Wrap" HorizontalAlignment="Center" Foreground="{DynamicResource FG_Black}" FontSize="14" FontFamily="Arial" VerticalAlignment="Center"/>
  279. </Border>
  280. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Padding="5,1">
  281. <TextBlock Text="LP1 Status" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" FontFamily="Arial" VerticalAlignment="Center"/>
  282. </Border>
  283. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{Binding LP1StatusColor[0]}" Padding="5,1">
  284. <TextBlock Text="{Binding LP1ProcStatus}" TextWrapping="Wrap" HorizontalAlignment="Center" Foreground="{Binding LP1StatusColor[1]}" FontSize="14" FontFamily="Arial" VerticalAlignment="Center"/>
  285. </Border>
  286. </StackPanel>
  287. <StackPanel Canvas.Left="686" Canvas.Top="500" >
  288. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1" Background="{DynamicResource Table_BG_Title}" Grid.Row="1" Padding="5,1">
  289. <TextBlock Text="LP2 Wafer Size" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" FontFamily="Arial" VerticalAlignment="Center"/>
  290. </Border>
  291. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Content}" Padding="5,1">
  292. <TextBlock Text="{Binding WaferSizeLP2}" HorizontalAlignment="Center" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" FontFamily="Arial" VerticalAlignment="Center"/>
  293. </Border>
  294. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Padding="5,1">
  295. <TextBlock Text="LP2 Status" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" FontFamily="Arial" VerticalAlignment="Center"/>
  296. </Border>
  297. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{Binding LP2StatusColor[0]}" Padding="5,1">
  298. <TextBlock Text="{Binding LP2ProcStatus}" TextWrapping="Wrap" HorizontalAlignment="Center" Foreground="{Binding LP2StatusColor[1]}" FontSize="14" FontFamily="Arial" VerticalAlignment="Center"/>
  299. </Border>
  300. </StackPanel>
  301. <TextBlock Text="{Binding PMBState}" Canvas.Left="585" Canvas.Top="15"></TextBlock>
  302. <TextBlock Text="{Binding PMAState}" Canvas.Left="338" Canvas.Top="15"></TextBlock>
  303. <TextBlock Text="{Binding WaferSizeCooling1}" Canvas.Left="395" Canvas.Top="379" FontWeight="Bold" FontSize="14" />
  304. <TextBlock Text="{Binding WaferSizeCooling2}" Canvas.Left="395" Canvas.Top="275" FontWeight="Bold" FontSize="14" />
  305. <TextBlock Text="{Binding WaferSizeAligner1}" Canvas.Left="640" Canvas.Top="379" FontWeight="Bold" FontSize="14" />
  306. <TextBlock Text="{Binding WaferSizeAligner2}" Canvas.Left="640" Canvas.Top="275" FontWeight="Bold" FontSize="14" />
  307. <TextBlock Text="{Binding WaferSizeEfemRobot}" Canvas.Left="577" Canvas.Top="324" FontWeight="Bold" FontSize="14" />
  308. <TextBlock Text="{Binding WaferSizePMA}" Canvas.Left="477" Canvas.Top="109" FontWeight="Bold" FontSize="14" />
  309. <TextBlock Text="{Binding WaferSizePMB}" Canvas.Left="663" Canvas.Top="109" FontWeight="Bold" FontSize="14" />
  310. </Canvas>
  311. </Grid>
  312. <TabControl Grid.Column="1" Margin="0,5">
  313. <TabItem Header="料盒">
  314. <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" Margin="10,0">
  315. <StackPanel>
  316. <local:FOUPFrontView UnitData="{Binding FOUPA}" VerticalAlignment="Top"></local:FOUPFrontView>
  317. <TextBlock Text="{Binding LP1WaferCountInfo}" FontFamily="Arial" TextAlignment="Center" FontSize="14" TextWrapping="Wrap" FontWeight="Bold" Foreground="Black" HorizontalAlignment="Center" VerticalAlignment="Center" Margin="0,0,0,10">
  318. </TextBlock>
  319. <Button Content="扫片" Width="75" Height="25" IsEnabled="{Binding EnableMapLP1}">
  320. <i:Interaction.Triggers>
  321. <i:EventTrigger EventName="Click">
  322. <cal:ActionMessage MethodName="MapLP">
  323. <cal:Parameter Value="{Binding FOUPA.ModuleID}"></cal:Parameter>
  324. </cal:ActionMessage>
  325. </i:EventTrigger>
  326. </i:Interaction.Triggers>
  327. </Button>
  328. </StackPanel>
  329. <StackPanel Margin="10,0,0,0">
  330. <local:FOUPFrontView UnitData="{Binding FOUPB}" VerticalAlignment="Top"></local:FOUPFrontView>
  331. <TextBlock Text="{Binding LP2WaferCountInfo}" FontFamily="Arial" TextAlignment="Center" FontSize="14" TextWrapping="Wrap" FontWeight="Bold" Foreground="Black" HorizontalAlignment="Center" VerticalAlignment="Center" Margin="0,0,0,10">
  332. </TextBlock>
  333. <Button Content="扫片" Width="75" Height="25" IsEnabled="{Binding EnableMapLP2}">
  334. <i:Interaction.Triggers>
  335. <i:EventTrigger EventName="Click">
  336. <cal:ActionMessage MethodName="MapLP">
  337. <cal:Parameter Value="{Binding FOUPB.ModuleID}"></cal:Parameter>
  338. </cal:ActionMessage>
  339. </i:EventTrigger>
  340. </i:Interaction.Triggers>
  341. </Button>
  342. </StackPanel>
  343. </StackPanel>
  344. </TabItem>
  345. <TabItem Header="{Binding LP1WaferAssociation.ModuleData.ModuleID}">
  346. <waferAssociation:WaferAssociationUnit WAInfo="{Binding LP1WaferAssociation}" IsEnabled="{Binding EnableJobLP1}"></waferAssociation:WaferAssociationUnit>
  347. </TabItem>
  348. <TabItem Header="{Binding LP2WaferAssociation.ModuleData.ModuleID}">
  349. <waferAssociation:WaferAssociationUnit WAInfo="{Binding LP2WaferAssociation}" IsEnabled="{Binding EnableJobLP2}"></waferAssociation:WaferAssociationUnit>
  350. </TabItem>
  351. </TabControl>
  352. <Grid Grid.Column="2" Width="200" Background="White" Margin="10,-1,0,-1">
  353. <Grid.RowDefinitions>
  354. <RowDefinition Height="30"/>
  355. <RowDefinition Height="Auto"/>
  356. <RowDefinition Height="30"/>
  357. <RowDefinition Height="Auto" />
  358. <RowDefinition Height="30"/>
  359. <RowDefinition />
  360. </Grid.RowDefinitions>
  361. <Border Grid.Row="0" BorderBrush="{DynamicResource MainFrame_BD}" BorderThickness="1" Background="{DynamicResource MainFrame_BG_Title}" Padding="5,1">
  362. <StackPanel Orientation="Horizontal" HorizontalAlignment="Left" VerticalAlignment="Center">
  363. <Path Data="M0,0 L5,0 5,5 z" Fill="Black" HorizontalAlignment="Left" Grid.Row="1" RenderTransformOrigin="0.5,0.5" Stretch="Fill" Width="5" Height="5">
  364. <Path.RenderTransform>
  365. <TransformGroup>
  366. <ScaleTransform/>
  367. <SkewTransform/>
  368. <RotateTransform Angle="45"/>
  369. <TranslateTransform/>
  370. </TransformGroup>
  371. </Path.RenderTransform>
  372. </Path>
  373. <TextBlock Margin="5,0,0,0" Text="Wafer Status" FontFamily="Arial" FontSize="14" Foreground="{DynamicResource FG_Black}" HorizontalAlignment="Left" VerticalAlignment="Center"/>
  374. </StackPanel>
  375. </Border>
  376. <Border Grid.Row="1" BorderBrush="{DynamicResource MainFrame_BD}" BorderThickness="1,0,1,1" Padding="5,1">
  377. <StackPanel HorizontalAlignment="Center" VerticalAlignment="Top" Margin="0,5">
  378. <Grid Width="180" Height="20" HorizontalAlignment="Left">
  379. <Grid.ColumnDefinitions>
  380. <ColumnDefinition Width="40"/>
  381. <ColumnDefinition />
  382. </Grid.ColumnDefinitions>
  383. <Rectangle Fill="Gold" Stroke="Black" StrokeThickness="1"/>
  384. <TextBlock Text="Idle / Unselected" Grid.Column="1" Margin="10,0,0,0" Foreground="{DynamicResource FG_Black}" FontSize="14" FontFamily="Arial" VerticalAlignment="Center"/>
  385. </Grid>
  386. <Grid Width="180" Height="20" Margin="0,5,0,0" HorizontalAlignment="Left">
  387. <Grid.ColumnDefinitions>
  388. <ColumnDefinition Width="40"/>
  389. <ColumnDefinition Width="6*" />
  390. <ColumnDefinition Width="29*"/>
  391. </Grid.ColumnDefinitions>
  392. <Rectangle Fill="Blue" Stroke="Black" StrokeThickness="1"/>
  393. <TextBlock Text="Idle / Job Selected" Grid.Column="1" Margin="10,2,0,1" Foreground="{DynamicResource FG_Black}" FontSize="14" FontFamily="Arial" VerticalAlignment="Center" Grid.ColumnSpan="2"/>
  394. </Grid>
  395. <Grid Width="180" Height="20" Margin="0,5,0,0" HorizontalAlignment="Left">
  396. <Grid.ColumnDefinitions>
  397. <ColumnDefinition Width="40"/>
  398. <ColumnDefinition />
  399. </Grid.ColumnDefinitions>
  400. <Rectangle Fill="Cyan" Stroke="Black" StrokeThickness="1"/>
  401. <TextBlock Text="In Process" Grid.Column="1" Margin="10,0,0,0" Foreground="{DynamicResource FG_Black}" FontSize="14" FontFamily="Arial" VerticalAlignment="Center"/>
  402. </Grid>
  403. <Grid Width="180" Height="20" Margin="0,5,0,0" HorizontalAlignment="Left">
  404. <Grid.ColumnDefinitions>
  405. <ColumnDefinition Width="40"/>
  406. <ColumnDefinition />
  407. </Grid.ColumnDefinitions>
  408. <Rectangle Fill="LimeGreen" Stroke="Black" StrokeThickness="1"/>
  409. <TextBlock Text="Process Complete" Grid.Column="1" Margin="10,0,0,0" Foreground="{DynamicResource FG_Black}" FontSize="14" FontFamily="Arial" VerticalAlignment="Center"/>
  410. </Grid>
  411. <Grid Width="180" Height="20" Margin="0,5,0,0" HorizontalAlignment="Left">
  412. <Grid.ColumnDefinitions>
  413. <ColumnDefinition Width="40"/>
  414. <ColumnDefinition />
  415. </Grid.ColumnDefinitions>
  416. <Rectangle Fill="Red" Stroke="Black" StrokeThickness="1"/>
  417. <TextBlock Text="Error" Grid.Column="1" Margin="10,0,0,0" Foreground="{DynamicResource FG_Black}" FontSize="14" FontFamily="Arial" VerticalAlignment="Center"/>
  418. </Grid>
  419. </StackPanel>
  420. </Border>
  421. <Border Grid.Row="2" BorderBrush="{DynamicResource MainFrame_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource MainFrame_BG_Title}" Padding="5,1">
  422. </Border>
  423. <Border Grid.Row="3" BorderBrush="{DynamicResource MainFrame_BD}" BorderThickness="1,0,1,1" Padding="5,1">
  424. <StackPanel HorizontalAlignment="Center" VerticalAlignment="Top" Margin="0,8">
  425. <Grid>
  426. <Grid.ColumnDefinitions>
  427. <ColumnDefinition Width="0"/>
  428. <ColumnDefinition />
  429. </Grid.ColumnDefinitions>
  430. <deviceControl:AITSensor Margin="-30,0,5,0" GreenColor="True" LightOnValue="{Binding IsRtInitialized}"></deviceControl:AITSensor>
  431. <Button Style="{StaticResource BtnControl}" Grid.Column="1" Content="初始化" Width="120" Height="25">
  432. <i:Interaction.Triggers>
  433. <i:EventTrigger EventName="Click">
  434. <cal:ActionMessage MethodName="HomeAll">
  435. </cal:ActionMessage>
  436. </i:EventTrigger>
  437. </i:Interaction.Triggers>
  438. </Button>
  439. </Grid>
  440. <Grid Margin="0,8,0,0">
  441. <Grid.ColumnDefinitions>
  442. <ColumnDefinition Width="0"/>
  443. <ColumnDefinition />
  444. </Grid.ColumnDefinitions>
  445. <Button Style="{StaticResource BtnControl}" Grid.Column="1" Content="终止" Width="120" Height="25">
  446. <i:Interaction.Triggers>
  447. <i:EventTrigger EventName="Click">
  448. <cal:ActionMessage MethodName="Abort">
  449. </cal:ActionMessage>
  450. </i:EventTrigger>
  451. </i:Interaction.Triggers>
  452. </Button>
  453. </Grid>
  454. <Grid Margin="0,8,0,0">
  455. <Grid.ColumnDefinitions>
  456. <ColumnDefinition Width="0"/>
  457. <ColumnDefinition />
  458. </Grid.ColumnDefinitions>
  459. <Button Style="{StaticResource BtnControl}" Grid.Column="1" Content="全部暂停" Width="120" Height="25" IsEnabled="{Binding IsPauseAllEnable}">
  460. <i:Interaction.Triggers>
  461. <i:EventTrigger EventName="Click">
  462. <cal:ActionMessage MethodName="PauseAllJob">
  463. </cal:ActionMessage>
  464. </i:EventTrigger>
  465. </i:Interaction.Triggers>
  466. </Button>
  467. </Grid>
  468. <Grid Margin="0,8,0,0">
  469. <Grid.ColumnDefinitions>
  470. <ColumnDefinition Width="0"/>
  471. <ColumnDefinition />
  472. </Grid.ColumnDefinitions>
  473. <Button Style="{StaticResource BtnControl}" Grid.Column="1" Content="晶圆返回" Width="120" Height="25">
  474. <i:Interaction.Triggers>
  475. <i:EventTrigger EventName="Click">
  476. <cal:ActionMessage MethodName="ReturnAllWafer">
  477. </cal:ActionMessage>
  478. </i:EventTrigger>
  479. </i:Interaction.Triggers>
  480. </Button>
  481. </Grid>
  482. </StackPanel>
  483. </Border>
  484. <Border Grid.Row="4" BorderBrush="{DynamicResource MainFrame_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource MainFrame_BG_Title}" Padding="5,1">
  485. </Border>
  486. <Border Grid.Row="5" BorderBrush="{DynamicResource MainFrame_BD}" BorderThickness="1,0,1,1" Padding="5,1">
  487. <StackPanel HorizontalAlignment="Center" VerticalAlignment="Top" Margin="0,5">
  488. <Button Style="{StaticResource BtnControl}" IsEnabled="{Binding EnableAuto}" Margin ="5" Content="自动" Width="80" Height="25">
  489. <i:Interaction.Triggers>
  490. <i:EventTrigger EventName="Click">
  491. <cal:ActionMessage MethodName="Auto">
  492. </cal:ActionMessage>
  493. </i:EventTrigger>
  494. </i:Interaction.Triggers>
  495. </Button>
  496. <Button Style="{StaticResource BtnControl}" IsEnabled="{Binding EnableManual}" Margin ="5" Content="手动" Width="80" Height="25">
  497. <i:Interaction.Triggers>
  498. <i:EventTrigger EventName="Click">
  499. <cal:ActionMessage MethodName="Manual">
  500. </cal:ActionMessage>
  501. </i:EventTrigger>
  502. </i:Interaction.Triggers>
  503. </Button>
  504. <Grid x:Name="Cycle_Info" Visibility="{Binding IsCycleInfoVisibility}" Margin="0,10,0,0">
  505. <Grid.ColumnDefinitions>
  506. <ColumnDefinition Width="90"/>
  507. <ColumnDefinition Width="70"/>
  508. </Grid.ColumnDefinitions>
  509. <Grid.RowDefinitions>
  510. <RowDefinition Height="25"/>
  511. <RowDefinition Height="24"/>
  512. <RowDefinition Height="24"/>
  513. </Grid.RowDefinitions>
  514. <TextBlock Grid.ColumnSpan="2" Text="LP1Cycle 信息" FontFamily="Arial" FontSize="14" Foreground="{DynamicResource FG_Black}" HorizontalAlignment="Center" VerticalAlignment="Center" Margin="0,0,0,3"/>
  515. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1" Background="{DynamicResource Table_BG_Title}" Grid.Row="1" Padding="5,1">
  516. <TextBlock Text="跑片数量" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" FontFamily="Arial" VerticalAlignment="Center"/>
  517. </Border>
  518. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,1,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="1" Grid.Column="1" Padding="5,1">
  519. <TextBlock Text="{Binding LP1CycledWafer}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" FontFamily="Arial" VerticalAlignment="Center"/>
  520. </Border>
  521. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="2" Padding="5,1">
  522. <TextBlock Text="Cycle数量" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" FontFamily="Arial" VerticalAlignment="Center"/>
  523. </Border>
  524. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="2" Grid.Column="1" Padding="5,1">
  525. <TextBlock Text="{Binding LP1CycleCountDisplay}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" FontFamily="Arial" VerticalAlignment="Center"/>
  526. </Border>
  527. </Grid>
  528. <Grid x:Name="LP2Cycle_Info" Visibility="{Binding IsCycleInfoVisibility}" Margin="0,10,0,0">
  529. <Grid.ColumnDefinitions>
  530. <ColumnDefinition Width="90"/>
  531. <ColumnDefinition Width="70"/>
  532. </Grid.ColumnDefinitions>
  533. <Grid.RowDefinitions>
  534. <RowDefinition Height="25"/>
  535. <RowDefinition Height="24"/>
  536. <RowDefinition Height="24"/>
  537. </Grid.RowDefinitions>
  538. <TextBlock Grid.ColumnSpan="2" Text="LP2Cycle 信息" FontFamily="Arial" FontSize="14" Foreground="{DynamicResource FG_Black}" HorizontalAlignment="Center" VerticalAlignment="Center" Margin="0,0,0,3"/>
  539. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1" Background="{DynamicResource Table_BG_Title}" Grid.Row="1" Padding="5,1">
  540. <TextBlock Text="跑片数量" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" FontFamily="Arial" VerticalAlignment="Center"/>
  541. </Border>
  542. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,1,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="1" Grid.Column="1" Padding="5,1">
  543. <TextBlock Text="{Binding LP2CycledWafer}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" FontFamily="Arial" VerticalAlignment="Center"/>
  544. </Border>
  545. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="2" Padding="5,1">
  546. <TextBlock Text="Cycle数量" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" FontFamily="Arial" VerticalAlignment="Center"/>
  547. </Border>
  548. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="2" Grid.Column="1" Padding="5,1">
  549. <TextBlock Text="{Binding LP2CycleCountDisplay}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="14" FontFamily="Arial" VerticalAlignment="Center"/>
  550. </Border>
  551. </Grid>
  552. <TextBlock Grid.ColumnSpan="2" Text="ATM Mode ON" FontFamily="Arial" FontSize="14" Foreground="{DynamicResource FG_Black}" HorizontalAlignment="Center" VerticalAlignment="Center" Margin="0,20,0,0" Visibility="{Binding IsATMInfoVisibility}"/>
  553. </StackPanel>
  554. </Border>
  555. </Grid>
  556. </Grid>
  557. </ScrollViewer>
  558. </UserControl>