Skip to main content
A newer version of this page is available. .

DXMenuItem(String, EventHandler, Image) Constructor

Initializes a new instance of the DXMenuItem class with the specified caption, image and Click event handler

Namespace: DevExpress.Utils.Menu

Assembly: DevExpress.Utils.v19.1.dll

Declaration

public DXMenuItem(
    string caption,
    EventHandler click,
    Image image
)

Parameters

Name Type Description
caption String

A string that specifies the text displayed by the menu item. This value is assigned to the DXMenuItem.Caption property.

click EventHandler

An event handler that will be invoked when the menu item is clicked or selected. This value is assigned to the DXMenuItem.Click event.

image Image

An image that is displayed within the menu item. This value is assigned to the DXMenuItem.Image property.

See Also