MenuItem.DefaultItem Property

Definition

Gets or sets a value indicating whether the menu item is the default menu item.

C#
public bool DefaultItem { get; set; }

Property Value

true if the menu item is the default item in a menu; otherwise, false. The default is false.

Examples

The following code example creates a menu item with two submenu items. The example sets menuItem2 as the default menu item using the DefaultItem property.

C#
public void CreateMyMenus()
{
   MenuItem menuItem1 = new MenuItem("&File");
   MenuItem menuItem2 = new MenuItem("&New");
   MenuItem menuItem3 = new MenuItem("&Open");
   // Make menuItem2 the default menu item.
   menuItem2.DefaultItem = true;
}

Remarks

The default menu item for a menu is boldfaced. When the user double-clicks a submenu that contains a default item, the default item is selected, and the submenu is closed. You can use the DefaultItem property to indicate, the default action that is expected in a menu or shortcut menu.

Applies to

Product Versions
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 10