ToolStripDropDownItem.DropDownItemClicked Ereignis

Definition

Tritt ein, wenn auf das ToolStripDropDown geklickt wird.

public:
 event System::Windows::Forms::ToolStripItemClickedEventHandler ^ DropDownItemClicked;
public event System.Windows.Forms.ToolStripItemClickedEventHandler DropDownItemClicked;
public event System.Windows.Forms.ToolStripItemClickedEventHandler? DropDownItemClicked;
member this.DropDownItemClicked : System.Windows.Forms.ToolStripItemClickedEventHandler 
Public Custom Event DropDownItemClicked As ToolStripItemClickedEventHandler 

Ereignistyp

Beispiele

Im folgenden Codebeispiel wird veranschaulicht, wie das DropDownItemClicked Ereignis für mehrere ToolStripDropDownItem Steuerelemente behandelt wird. Dieses Codebeispiel ist Teil eines größeren Beispiels, das für die ToolStripDropDownItem-Klasse bereitgestellt wird.

// 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;
}
' 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.
 Private Sub toolStripDropDownItem_DropDownItemClicked( _
 ByVal sender As Object, _
 ByVal e As ToolStripItemClickedEventArgs)

     Dim msg As String = String.Format("Item clicked: {0}", e.ClickedItem.Text)
     Me.toolStripStatusLabel1.Text = msg

 End Sub

Hinweise

Weitere Informationen zur Behandlung von Ereignissen finden Sie unter behandeln und Auslösen von Ereignissen.

Gilt für: