Bagikan melalui


ToolStripDropDownItem.DropDownOpened Kejadian

Definisi

Terjadi ketika ToolStripDropDown telah dibuka.

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

Jenis Acara

Contoh

Contoh kode berikut menunjukkan cara menangani DropDownOpened peristiwa untuk beberapa ToolStripDropDownItem kontrol. Contoh kode ini adalah bagian dari contoh yang lebih besar yang disediakan untuk ToolStripDropDownItem kelas .

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

Keterangan

Kejadian ini terjadi ketika pengguna mengklik item drop-down atau saat Anda memanggil ShowDropDown metode . Anda dapat menggunakan peristiwa ini untuk mengisi ToolStripDropDownsecara dinamis .

Untuk informasi selengkapnya tentang menangani peristiwa, lihat Menangani dan Menaikkan Peristiwa.

Berlaku untuk