Table of Contents

Class MenuItemv2

Namespace
Terminal.Gui
Assembly
Terminal.Gui.dll

A Shortcut-derived object to be used as a menu item in a Menuv2. Has title, an A Shortcut-derived object to be used as a menu item in a Menuv2. Has title, an associated help text, and an action to execute on activation.

public class MenuItemv2 : Shortcut, IDisposable, ISupportInitializeNotification, ISupportInitialize, IOrientation, IDesignable
Inheritance
MenuItemv2
Implements
Derived
Inherited Members

Constructors

MenuItemv2()

Creates a new instance of MenuItemv2.

MenuItemv2(string?, string?, Action?, Key?)
MenuItemv2(string?, string?, Menuv2?)
MenuItemv2(string, Key, Action?)
MenuItemv2(View?, Command, string?, string?, Menuv2?)

Creates a new instance of MenuItemv2, binding it to targetView and command. The Key targetView has bound to command will be used as Key.

Properties

Command

Gets the Command that will be invoked on TargetView when the MenuItem is selected.

SubMenu

The submenu to display when the user selects this menu item.

TargetView

Gets the target View that the Command will be invoked on.

Methods

Dispose(bool)

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.

OnAccepted(CommandEventArgs)

Called when the user has accepted an item in this menu (or submenu). This is used to determine when to hide the menu.

OnMouseEnter(CancelEventArgs)

Called when the mouse moves over the View's Frame and no other non-SubView occludes it. MouseLeave will be raised when the mouse is no longer over the Frame.

RaiseAccepted(ICommandContext?)

Raises the OnAccepted(CommandEventArgs)/Accepted event indicating this item (or submenu) was accepted. This is used to determine when to hide the menu.

Events

Accepted

Raised when the user has accepted an item in this menu (or submenu). This is used to determine when to hide the menu.