ToolStripDropDownItem.HideDropDown Méthode

Définition

Masque un ToolStripDropDown visible.

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

Exemples

L’exemple de code suivant montre comment masquer un ToolStripDropDownItem contrôle lorsqu’un bouton est enfoncé. Cet exemple de code fait partie d’un exemple plus grand fourni pour la ToolStripDropDownItem classe.

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

    item.HideDropDown();
}
' This method hides the drop-down for the first item
' in the form's ToolStrip.
 Private Sub hideButton_Click( _
 ByVal sender As Object, _
 ByVal e As EventArgs) _
 Handles hideButton.Click

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

     item.HideDropDown()
 End Sub

Remarques

Utilisez la HideDropDown méthode pour empêcher l’utilisateur de choisir l’une des options disponibles sur le contrôle associé ToolStripDropDown .

S’applique à