Skybound.Gecko.GeckoContextMenuEventArgs.GeckoContextMenuEventArgs C# (CSharp) Метод

GeckoContextMenuEventArgs() публичный Метод

Creates a new instance of a GeckoContextMenuEventArgs object.
public GeckoContextMenuEventArgs ( Point location, ContextMenu contextMenu, string associatedLink, Uri backgroundImageSrc, Uri imageSrc, GeckoNode targetNode ) : System
location Point
contextMenu System.Windows.Forms.ContextMenu
associatedLink string
backgroundImageSrc System.Uri
imageSrc System.Uri
targetNode GeckoNode
Результат System
        public GeckoContextMenuEventArgs(Point location, ContextMenu contextMenu, string associatedLink, Uri backgroundImageSrc, Uri imageSrc, GeckoNode targetNode)
        {
            this._Location = location;
            this._ContextMenu = contextMenu;
            this._AssociatedLink = associatedLink;
            this._BackgroundImageSrc = backgroundImageSrc;
            this._ImageSrc = ImageSrc;
            this._TargetNode = targetNode;
        }
GeckoContextMenuEventArgs