FOUPFrontView.xaml.cs 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. 
  2. using System.Diagnostics;
  3. using System;
  4. using System.Windows;
  5. using System.Windows.Controls;
  6. using System.Windows.Input;
  7. using OpenSEMI.ClientBase;
  8. using OpenSEMI.Ctrlib.Controls;
  9. using CyberX8_Core;
  10. namespace CyberX8_Themes.UserControls
  11. {
  12. /// <summary>
  13. /// FOUPFrontView.xaml 的交互逻辑
  14. /// </summary>
  15. public partial class FOUPFrontView : UserControl
  16. {
  17. public FOUPFrontView()
  18. {
  19. InitializeComponent();
  20. }
  21. #region UnitData (DependencyProperty)
  22. public ModuleInfo UnitData
  23. {
  24. get { return (ModuleInfo)GetValue(UnitDataProperty); }
  25. set { SetValue(UnitDataProperty, value); }
  26. }
  27. public static readonly DependencyProperty UnitDataProperty =
  28. DependencyProperty.Register("UnitData", typeof(ModuleInfo), typeof(FOUPFrontView), new UIPropertyMetadata(null));
  29. public bool ShowTitle
  30. {
  31. get { return (bool)GetValue(ShowTitleProperty); }
  32. set { SetValue(ShowTitleProperty, value); }
  33. }
  34. public static readonly DependencyProperty ShowTitleProperty =
  35. DependencyProperty.Register("ShowTitle", typeof(bool), typeof(FOUPFrontView), new UIPropertyMetadata(true));
  36. public int SlotWidth
  37. {
  38. get { return (int)GetValue(SlotWidthProperty); }
  39. set { SetValue(SlotWidthProperty, value); }
  40. }
  41. public static readonly DependencyProperty SlotWidthProperty =
  42. DependencyProperty.Register("SlotWidth", typeof(int), typeof(FOUPFrontView), new PropertyMetadata(90));
  43. public bool IsCassettePlaced
  44. {
  45. get { return (bool)GetValue(IsCassettePlacedProperty); }
  46. set { SetValue(IsCassettePlacedProperty, value); }
  47. }
  48. public static readonly DependencyProperty IsCassettePlacedProperty =
  49. DependencyProperty.Register("IsCassettePlaced", typeof(bool), typeof(FOUPFrontView), new UIPropertyMetadata(false));
  50. #endregion
  51. private void Slot_SlotMouseButtonDown(object sender, MouseButtonEventArgs e)
  52. {
  53. GlobalEvents.OnSlotRightClickChanged(sender as Slot);
  54. }
  55. private void Slot_WaferTransferStarted(object sender, DragDropEventArgs e)
  56. {
  57. try
  58. {
  59. GlobalEvents.OnSlotWaferTransfer(e);
  60. }
  61. catch (Exception ex)
  62. {
  63. Trace.WriteLine(ex);
  64. }
  65. }
  66. }
  67. }