ToolStripDropDownItem.HasDropDownItems Proprietà

Definizione

Ottiene un valore che indica se all'oggetto ToolStripDropDownItem sono associati controlli ToolStripDropDown.

public:
 virtual property bool HasDropDownItems { bool get(); };
[System.ComponentModel.Browsable(false)]
public virtual bool HasDropDownItems { get; }
[<System.ComponentModel.Browsable(false)>]
member this.HasDropDownItems : bool
Public Overridable ReadOnly Property HasDropDownItems As Boolean

Valore della proprietà

true se ToolStripDropDownItem dispone di controlli ToolStripDropDown; in caso contrario, false.

Attributi

Esempio

Nell'esempio di codice seguente viene illustrato come eseguire una query sulla HasDropDownItems proprietà per visualizzare in modo condizionale un ToolStripDropDownItem controllo. Questo esempio di codice fa parte di un esempio più grande fornito per la ToolStripDropDownItem classe.

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

Si applica a