123456789101112131415161718192021222324252627282930313233 |
- using OpenSEMI.Ctrlib.Controls;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Venus_Core
- {
- public static class VenusGlobalEvents
- {
- public static event Action<Slot> SlotRightClickChangedEvent;
- public static event Action<DragDropEventArgs> SlotWaferTransferEvent;
- //public static event Action<string> ReConnectPLCEvent;
- public static void OnSlotRightClickChanged(Slot slot)
- {
- SlotRightClickChangedEvent?.Invoke(slot);
- }
- public static void OnSlotWaferTransfer(DragDropEventArgs e)
- {
- SlotWaferTransferEvent?.Invoke(e);
- }
- //public static void OnReConnectPLC(string moduleName)
- //{
- // ReConnectPLCEvent?.Invoke(moduleName);
- //}
- }
- }
|