Bagikan melalui


ToolStripDropDownItem.ShowDropDown Metode

Definisi

Menampilkan kontrol yang ToolStripDropDownItem terkait dengan ini ToolStripDropDownItem.

public:
 void ShowDropDown();
public void ShowDropDown();
member this.ShowDropDown : unit -> unit
Public Sub ShowDropDown ()

Pengecualian

Contoh

Contoh kode berikut menunjukkan cara menampilkan ToolStripDropDownItem kontrol saat tombol ditekan. Contoh kode ini adalah bagian dari contoh yang lebih besar yang disediakan untuk ToolStripDropDownItem kelas .

// This method shows the drop-down for the first item
// in the form's ToolStrip.
private void showButton_Click(object sender, EventArgs e)
{
    ToolStripDropDownItem item = this.toolStrip1.Items[0] as ToolStripDropDownItem;

    if (item.HasDropDownItems)
    {
        item.ShowDropDown();
    }
}
' This method shows the drop-down for the first item
' in the form's ToolStrip.
 Private Sub showButton_Click( _
 ByVal sender As Object, _
 ByVal e As EventArgs) _
 Handles showButton.Click

     Dim item As ToolStripDropDownItem = CType(Me.toolStrip1.Items(0), ToolStripDropDownItem)

     If item.HasDropDownItems Then
         item.ShowDropDown()
     End If

 End Sub

Keterangan

ShowDropDown Gunakan metode untuk menampilkan kontrol drop-down yang telah diatur oleh DropDown properti .

Berlaku untuk