ToolStripDropDownItem.DropDownOpened 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 dopo aver aperto ToolStripDropDown.
public:
event EventHandler ^ DropDownOpened;
public event EventHandler DropDownOpened;
public event EventHandler? DropDownOpened;
member this.DropDownOpened : EventHandler
Public Custom Event DropDownOpened As EventHandler
Tipo evento
Esempio
Nell'esempio di codice seguente viene illustrato come gestire l'evento DropDownOpened per più ToolStripDropDownItem controlli. Questo esempio di codice fa parte di un esempio più ampio fornito per la ToolStripDropDownItem classe .
// This method handles the DropDownOpened event from a
// ToolStripDropDownItem. It displays the value of the
// item's Text property in the form's StatusStrip control.
void toolStripDropDownItem_DropDownOpened(object sender, EventArgs e)
{
ToolStripDropDownItem item = sender as ToolStripDropDownItem;
string msg = String.Format("Item opened: {0}", item.Text);
this.toolStripStatusLabel1.Text = msg;
}
' This method handles the DropDownOpened event from a
' ToolStripDropDownItem. It displays the value of the
' item's Text property in the form's StatusStrip control.
Private Sub toolStripDropDownItem_DropDownOpened(ByVal sender As Object, ByVal e As EventArgs)
Dim item As ToolStripDropDownItem = CType(sender, ToolStripDropDownItem)
Dim msg As String = String.Format("Item opened: {0}", item.Text)
Me.toolStripStatusLabel1.Text = msg
End Sub
Commenti
Questo evento si verifica quando l'utente fa clic sull'elemento a discesa o quando si chiama il ShowDropDown metodo . È possibile usare questo evento per popolare dinamicamente .ToolStripDropDown
Per ulteriori informazioni sulla gestione degli eventi, consultare gestione e generazione di eventi.