Esempio n. 1
0
        public virtual void OnActionOccured(OptiActionEventsArgs myEvent)
        {
            EventHandler <OptiActionEventsArgs> handler = ActionOccured;

            if (handler != null)
            {
                handler(this, myEvent);
            }
        }
Esempio n. 2
0
        public virtual void OnActionOccured(OptiActionEventsArgs myEvent)  // Define Event Trigger Method
        {
            EventHandler <OptiActionEventsArgs> handler = ActionOccured;

            if (handler != null)
            {
                handler(this, myEvent);
            }
        }