PufLoaderControl.xaml.cs 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228
  1. using CyberX8_Core;
  2. using OpenSEMI.ClientBase;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. using System.Windows;
  9. using System.Windows.Controls;
  10. using System.Windows.Data;
  11. using System.Windows.Documents;
  12. using System.Windows.Input;
  13. using System.Windows.Media;
  14. using System.Windows.Media.Imaging;
  15. using System.Windows.Navigation;
  16. using System.Windows.Shapes;
  17. namespace CyberX8_Themes.UserControls
  18. {
  19. /// <summary>
  20. /// PufLoaderControl.xaml 的交互逻辑
  21. /// </summary>
  22. public partial class PufLoaderControl : UserControl
  23. {
  24. public PufLoaderControl()
  25. {
  26. InitializeComponent();
  27. }
  28. public static readonly DependencyProperty Puf1WaferAProperty = DependencyProperty.Register("Puf1WaferA", typeof(WaferInfo), typeof(PufLoaderControl));
  29. public WaferInfo Puf1WaferA
  30. {
  31. get => (WaferInfo)GetValue(Puf1WaferAProperty);
  32. set => SetValue(Puf1WaferAProperty, value);
  33. }
  34. public static readonly DependencyProperty Puf1WaferBProperty = DependencyProperty.Register("Puf1WaferB", typeof(WaferInfo), typeof(PufLoaderControl));
  35. public WaferInfo Puf1WaferB
  36. {
  37. get => (WaferInfo)GetValue(Puf1WaferBProperty);
  38. set => SetValue(Puf1WaferBProperty, value);
  39. }
  40. public static readonly DependencyProperty Puf2WaferAProperty = DependencyProperty.Register("Puf2WaferA", typeof(WaferInfo), typeof(PufLoaderControl));
  41. public WaferInfo Puf2WaferA
  42. {
  43. get => (WaferInfo)GetValue(Puf2WaferAProperty);
  44. set => SetValue(Puf2WaferAProperty, value);
  45. }
  46. public static readonly DependencyProperty Puf2WaferBProperty = DependencyProperty.Register("Puf2WaferB", typeof(WaferInfo), typeof(PufLoaderControl));
  47. public WaferInfo Puf2WaferB
  48. {
  49. get => (WaferInfo)GetValue(Puf2WaferBProperty);
  50. set => SetValue(Puf2WaferBProperty, value);
  51. }
  52. //public static readonly DependencyProperty IsPuf1ChangeProperty = DependencyProperty.Register("IsPuf1Change", typeof(bool), typeof(PufLoaderControl));
  53. //public bool IsPuf1Change
  54. //{
  55. // get => (bool)GetValue(IsPuf1ChangeProperty);
  56. // set => SetValue(IsPuf1ChangeProperty, value);
  57. //}
  58. public static readonly DependencyProperty LoaderWaferAProperty = DependencyProperty.Register("LoaderWaferA", typeof(WaferInfo), typeof(PufLoaderControl));
  59. public WaferInfo LoaderWaferA
  60. {
  61. get => (WaferInfo)GetValue(LoaderWaferAProperty);
  62. set => SetValue(LoaderWaferAProperty, value);
  63. }
  64. public static readonly DependencyProperty LoaderWaferBProperty = DependencyProperty.Register("LoaderWaferB", typeof(WaferInfo), typeof(PufLoaderControl));
  65. public WaferInfo LoaderWaferB
  66. {
  67. get => (WaferInfo)GetValue(LoaderWaferBProperty);
  68. set => SetValue(LoaderWaferBProperty, value);
  69. }
  70. /// <summary>
  71. /// Loader的sideA开启状态
  72. /// </summary>
  73. public static readonly DependencyProperty WaferVisibleAProperty = DependencyProperty.Register("WaferVisibleA", typeof(bool), typeof(PufLoaderControl));
  74. public bool WaferVisibleA
  75. {
  76. get => (bool)GetValue(WaferVisibleAProperty);
  77. set => SetValue(WaferVisibleAProperty, value);
  78. }
  79. /// <summary>
  80. /// Loader的sideB开启状态
  81. /// </summary>
  82. public static readonly DependencyProperty WaferVisibleBProperty = DependencyProperty.Register("WaferVisibleB", typeof(bool), typeof(PufLoaderControl));
  83. public bool WaferVisibleB
  84. {
  85. get => (bool)GetValue(WaferVisibleBProperty);
  86. set => SetValue(WaferVisibleBProperty, value);
  87. }
  88. public static readonly DependencyProperty CurrentLoaderAXLocationProperty = DependencyProperty.Register("CurrentLoaderAXLocation", typeof(PufControl.LoaderXLocation), typeof(PufLoaderControl),
  89. new PropertyMetadata(PufControl.LoaderXLocation.Parker));
  90. public PufControl.LoaderXLocation CurrentLoaderAXLocation
  91. {
  92. get { return (PufControl.LoaderXLocation)this.GetValue(CurrentLoaderAXLocationProperty); }
  93. set
  94. {
  95. this.SetValue(CurrentLoaderAXLocationProperty, value);
  96. }
  97. }
  98. public static readonly DependencyProperty CurrentLoaderBXLocationProperty = DependencyProperty.Register("CurrentLoaderBXLocation", typeof(PufControl.LoaderXLocation), typeof(PufLoaderControl),
  99. new PropertyMetadata(PufControl.LoaderXLocation.Parker));
  100. public PufControl.LoaderXLocation CurrentLoaderBXLocation
  101. {
  102. get { return (PufControl.LoaderXLocation)this.GetValue(CurrentLoaderBXLocationProperty); }
  103. set
  104. {
  105. this.SetValue(CurrentLoaderBXLocationProperty, value);
  106. }
  107. }
  108. public static readonly DependencyProperty CurrentLoaderARotationProperty = DependencyProperty.Register("CurrentLoaderARotation", typeof(PufControl.LoaderRotation), typeof(PufLoaderControl),
  109. new PropertyMetadata(PufControl.LoaderRotation.Origin));
  110. public PufControl.LoaderRotation CurrentLoaderARotation
  111. {
  112. get { return (PufControl.LoaderRotation)this.GetValue(CurrentLoaderARotationProperty); }
  113. set
  114. {
  115. this.SetValue(CurrentLoaderARotationProperty, value);
  116. }
  117. }
  118. public static readonly DependencyProperty CurrentLoaderBRotationProperty = DependencyProperty.Register("CurrentLoaderBRotation", typeof(PufControl.LoaderRotation), typeof(PufLoaderControl),
  119. new PropertyMetadata(PufControl.LoaderRotation.Origin));
  120. public PufControl.LoaderRotation CurrentLoaderBRotation
  121. {
  122. get { return (PufControl.LoaderRotation)this.GetValue(CurrentLoaderBRotationProperty); }
  123. set
  124. {
  125. this.SetValue(CurrentLoaderBRotationProperty, value);
  126. }
  127. }
  128. /// <summary>
  129. /// Loader Rotation UI 动画位置
  130. /// </summary>
  131. public static readonly DependencyProperty CurrentLoaderRotationProperty = DependencyProperty.Register("CurrentLoaderRotation", typeof(LoaderControl.LoaderRotation), typeof(PufLoaderControl));
  132. public LoaderControl.LoaderRotation CurrentLoaderRotation
  133. {
  134. get { return (LoaderControl.LoaderRotation)this.GetValue(CurrentLoaderRotationProperty); }
  135. set
  136. {
  137. this.SetValue(CurrentLoaderRotationProperty, value);
  138. }
  139. }
  140. /// <summary>
  141. /// Puf1 Rotation UI 位置
  142. /// </summary>
  143. public static readonly DependencyProperty Puf1RotationPositionProperty = DependencyProperty.Register("Puf1RotationPosition", typeof(double), typeof(PufLoaderControl));
  144. public double Puf1RotationPosition
  145. {
  146. get { return (double)this.GetValue(Puf1RotationPositionProperty); }
  147. set
  148. {
  149. this.SetValue(Puf1RotationPositionProperty, value);
  150. }
  151. }
  152. /// <summary>
  153. /// Puf2 Rotation UI 位置
  154. /// </summary>
  155. public static readonly DependencyProperty Puf2RotationPositionProperty = DependencyProperty.Register("Puf2RotationPosition", typeof(double), typeof(PufLoaderControl));
  156. public double Puf2RotationPosition
  157. {
  158. get { return (double)this.GetValue(Puf2RotationPositionProperty); }
  159. set
  160. {
  161. this.SetValue(Puf2RotationPositionProperty, value);
  162. }
  163. }
  164. /// <summary>
  165. /// Loader1 Rotation UI 位置
  166. /// </summary>
  167. public static readonly DependencyProperty Loader1RotationPositionProperty = DependencyProperty.Register("Loader1RotationPosition", typeof(double), typeof(PufLoaderControl));
  168. public double Loader1RotationPosition
  169. {
  170. get { return (double)this.GetValue(Loader1RotationPositionProperty); }
  171. set
  172. {
  173. this.SetValue(Loader1RotationPositionProperty, value);
  174. }
  175. }
  176. /// <summary>
  177. /// Puf1 Flip UI 位置
  178. /// </summary>
  179. public static readonly DependencyProperty Puf1FlipPositionProperty = DependencyProperty.Register("Puf1FlipPosition", typeof(double), typeof(PufLoaderControl));
  180. public double Puf1FlipPosition
  181. {
  182. get { return (double)this.GetValue(Puf1FlipPositionProperty); }
  183. set
  184. {
  185. this.SetValue(Puf1FlipPositionProperty, value);
  186. }
  187. }
  188. /// <summary>
  189. /// Puf2 Flip UI 位置
  190. /// </summary>
  191. public static readonly DependencyProperty Puf2FlipPositionProperty = DependencyProperty.Register("Puf2FlipPosition", typeof(double), typeof(PufLoaderControl));
  192. public double Puf2FlipPosition
  193. {
  194. get { return (double)this.GetValue(Puf2FlipPositionProperty); }
  195. set
  196. {
  197. this.SetValue(Puf2FlipPositionProperty, value);
  198. }
  199. }
  200. private void Puf1Control_MouseLeftButtonUp(object sender, MouseButtonEventArgs e)
  201. {
  202. GlobalEvents.OnSwitchFixedTabItem("HardWare", "Puf", "Puf1ServiceScreen");
  203. }
  204. private void Puf2Control_MouseLeftButtonUp(object sender, MouseButtonEventArgs e)
  205. {
  206. GlobalEvents.OnSwitchFixedTabItem("HardWare", "Puf", "Puf2ServiceScreen");
  207. }
  208. private void LoaderControl_MouseLeftButtonUp(object sender, MouseButtonEventArgs e)
  209. {
  210. GlobalEvents.OnSwitchFixedTabItem("HardWare", "Loader", "LoaderSetup");
  211. }
  212. }
  213. }