Nevron .NET Vision
Nevron.UI.WinForm.Controls Namespace / NCommandParent Class / CommandPopup Event


In This Topic
    CommandPopup Event (NCommandParent)
    In This Topic
    Fired when a command hosted by this parent is about to display its drop-down menu. Typically this event is fired only by a top level parents such as NToolbar and NContextMenu.
    Syntax
    'Declaration
     
    
    <System.ComponentModel.DescriptionAttribute("Fired when a command hosted by this parent is about to display its drop-down menu. Typically this event is fired only by a top level parents such as NToolbar and NContextMenu.")>
    Public Event CommandPopup As CommandEventHandler
    'Usage
     
    
    Dim instance As NCommandParent
    Dim handler As CommandEventHandler
     
    AddHandler instance.CommandPopup, handler
    [System.ComponentModel.Description("Fired when a command hosted by this parent is about to display its drop-down menu. Typically this event is fired only by a top level parents such as NToolbar and NContextMenu.")]
    public event CommandEventHandler CommandPopup
    Event Data

    The event handler receives an argument of type CommandEventArgs containing data related to this event. The following CommandEventArgs properties provide information specific to this event.

    PropertyDescription
    Gets the NCommand object associated with the event.  
    Gets/sets a value whether the event is handled.  
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also