Esempio n. 1
0
        protected void OnActionImageTooltipChanged(ActionImageEventArgs e)
        {
            EventHandler <ActionImageEventArgs> eh = (EventHandler <ActionImageEventArgs>)(Events[ActionImageToolTipChangedEvent]);

            if (eh != null)
            {
                eh(this, e);
            }
        }
Esempio n. 2
0
 protected void OnActionImageTooltipChanged(ActionImageEventArgs e)
 {
     EventHandler<ActionImageEventArgs> eh = (EventHandler<ActionImageEventArgs>)(Events[ActionImageToolTipChangedEvent]);
     if (eh != null)
         eh (this, e);
 }
Esempio n. 3
0
 protected void OnActionImageRemoved(ActionImageEventArgs e)
 {
     EventHandler<ActionImageEventArgs> eh = (EventHandler<ActionImageEventArgs>)(Events[ActionImageRemovedEvent]);
     if (eh != null)
         eh (this, e);
 }