ToolStripDropDownItem.DropDownOpened Evento

Definição

Ocorre quando o ToolStripDropDown é aberto.

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

Tipo de evento

Exemplos

O exemplo de código a seguir demonstra como manipular o DropDownOpened evento para vários ToolStripDropDownItem controles. Este exemplo de código faz parte de um exemplo maior fornecido para a 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

Comentários

Esse evento ocorre quando o usuário clica no item suspenso ou quando você chama o ShowDropDown método . Você pode usar esse evento para preencher dinamicamente o ToolStripDropDown.

Para obter mais informações sobre como lidar com eventos, consulte Manipulando e gerando eventos.

Aplica-se a