ToolStripDropDownItem.DropDownOpened Evento

Definición

Se produce cuando ToolStripDropDown se ha abierto .

public:
 event EventHandler ^ DropDownOpened;
public event EventHandler DropDownOpened;
member this.DropDownOpened : EventHandler 
Public Custom Event DropDownOpened As EventHandler 

Tipo de evento

Ejemplos

En el ejemplo de código siguiente se muestra cómo controlar el DropDownOpened evento para varios ToolStripDropDownItem controles. Este ejemplo de código forma parte de un ejemplo más grande proporcionado para la ToolStripDropDownItem clase .

// 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

Comentarios

Este evento se produce cuando el usuario hace clic en el elemento desplegable o al llamar al ShowDropDown método . Puede usar este evento para rellenar dinámicamente .ToolStripDropDown

Para obtener más información sobre el manejo de eventos, consulte controlar y provocar eventos.

Se aplica a