xtd 0.2.0
Loading...
Searching...
No Matches

◆ menu_item() [20/26]

xtd::forms::menu_item::menu_item ( const xtd::ustring text,
xtd::event_handler  on_click,
const xtd::drawing::image image,
xtd::forms::menu_item_kind  kind 
)

Initializes a new instance of the class with a specified caption, event handler, image menu item, and kind the menu item.

Parameters
textThe caption for the menu item.
on_clickThe event_handler that handles the Click event for this menu item.
imageA xtd::drawing::image menu item.
kindOne of the xtd::forms::menu_item_kind value.
Remarks
When you specify a caption for your menu item with the text parameter, you can also specify an access key by placing an '&' before the character to be used as the access key. For example, to specify the "F" in "File" as an access key, you would specify the caption for the menu item as "&File". You can use this feature to provide keyboard navigation for your menus.
Setting the text parameter to "-" causes your menu item to be displayed as a separator (a horizontal line) rather than a standard menu item.