Skybound.Gecko.GeckoWebBrowser.OnShowContextMenu C# (CSharp) 메소드

OnShowContextMenu() 보호된 메소드

Raises the ShowContextMenu event.
protected OnShowContextMenu ( GeckoContextMenuEventArgs e ) : void
e GeckoContextMenuEventArgs The data for the event.
리턴 void
        protected virtual void OnShowContextMenu(GeckoContextMenuEventArgs e)
        {
            if (((GeckoContextMenuEventHandler)this.Events[ShowContextMenuEvent]) != null)
                ((GeckoContextMenuEventHandler)this.Events[ShowContextMenuEvent])(this, e);
        }