ToolStripDropDownItem.DropDownItemClicked Evento
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Si verifica quando viene fatto clic sull'oggetto ToolStripDropDown.
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
Tipo evento
Esempio
Nell'esempio di codice seguente viene illustrato come gestire l'evento DropDownItemClicked per più ToolStripDropDownItem controlli. Questo esempio di codice fa parte di un esempio più grande fornito per la ToolStripDropDownItem classe.
// 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
Commenti
Per ulteriori informazioni sulla gestione degli eventi, consultare gestione e generazione di eventi.