ToolStripDropDownItem.DropDownItemClicked Event

Definition

Occurs when the ToolStripDropDown is clicked.

C#
public event System.Windows.Forms.ToolStripItemClickedEventHandler DropDownItemClicked;
C#
public event System.Windows.Forms.ToolStripItemClickedEventHandler? DropDownItemClicked;

Event Type

Examples

The following code example demonstrates how to handle the DropDownItemClicked event for multiple ToolStripDropDownItem controls. This code example is part of a larger example provided for the ToolStripDropDownItem class.

C#
// This method handles the DropDownItemClicked event from a 
// ToolStripDropDownItem. It displays the value of the clicked
// item's Text property in the form's StatusStrip control.
void toolStripDropDownItem_DropDownItemClicked(object sender, ToolStripItemClickedEventArgs e)
{
    string msg = String.Format("Item clicked: {0}", e.ClickedItem.Text);
    this.toolStripStatusLabel1.Text = msg;
}

Remarks

For more information about handling events, see Handling and Raising Events.

Applies to

Product Versions
.NET Framework 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, 3.1, 5, 6, 7, 8, 9, 10