ToolStripDropDownItem.DropDownItemClicked Kejadian
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
Terjadi ketika diklik 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
Jenis Acara
Contoh
Contoh kode berikut menunjukkan cara menangani DropDownItemClicked peristiwa untuk beberapa ToolStripDropDownItem kontrol. Contoh kode ini adalah bagian dari contoh yang lebih besar yang disediakan untuk ToolStripDropDownItem kelas .
// 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
Keterangan
Untuk informasi selengkapnya tentang menangani peristiwa, lihat Menangani dan Menaikkan Peristiwa.
Berlaku untuk
Berkolaborasi dengan kami di GitHub
Sumber untuk konten ini dapat ditemukan di GitHub, yang juga dapat Anda gunakan untuk membuat dan meninjau masalah dan menarik permintaan. Untuk informasi selengkapnya, lihat panduan kontributor kami.