Exemplo n.º 1
0
        protected virtual void OnGoIconClick(GoIconClickEventArgs e)
        {
            EventHandler <GoIconClickEventArgs> handler = (EventHandler <GoIconClickEventArgs>)Events[GoIconClickEvent];

            if (handler != null)
            {
                handler(this, e);
            }
        }
Exemplo n.º 2
0
 void textureList_GoIconClick(object sender, GoIconClickEventArgs e)
 {
     ViewTexture(e.ID, false);
 }
Exemplo n.º 3
0
 protected virtual void OnGoIconClick(GoIconClickEventArgs e)
 {
     EventHandler<GoIconClickEventArgs> handler = (EventHandler<GoIconClickEventArgs>)Events[GoIconClickEvent];
     if (handler != null)
         handler(this, e);
 }