Sdílet prostřednictvím


ToolboxBrowsableAttribute – konstruktor

Inicializuje novou instanci ToolboxBrowsableAttribute Třída

Obor názvů:  Microsoft.Windows.Design
Sestavení:  Microsoft.Windows.Design.Interaction (v Microsoft.Windows.Design.Interaction.dll)

Syntaxe

'Deklarace
Public Sub New ( _
    browsable As Boolean _
)
public ToolboxBrowsableAttribute(
    bool browsable
)
public:
ToolboxBrowsableAttribute(
    bool browsable
)
new : 
        browsable:bool -> ToolboxBrowsableAttribute
public function ToolboxBrowsableAttribute(
    browsable : boolean
)

Parametry

  • browsable
    Typ: System.Boolean
    true zpracovávaná pro ovládací prvky prohlížeče; jinak false.

Příklady

Následující příklad kódu ukazuje, jak použít ToolboxBrowsableAttribute zpracovávaná pro vlastní ovládací prvek v návrhář panel nástrojů prohlížeče.

' Container for any general design-time metadata to initialize.
' Designers look for a type in the design-time assembly that 
' implements IProvideAttributeTable. If found, designers instantiate
' this class and access its AttributeTable property automatically.
Friend Class Metadata
    Implements IProvideAttributeTable

    ' Accessed by the designer to register any design-time metadata.
    Public ReadOnly Property AttributeTable() As AttributeTable _
        Implements IProvideAttributeTable.AttributeTable
        Get
            Dim builder As New AttributeTableBuilder()

            builder.AddCustomAttributes( _
                GetType(ButtonWithDesignTime), _
                New ToolboxBrowsableAttribute(True))

            Return builder.CreateTable()
        End Get
    End Property

End Class
// Container for any general design-time metadata to initialize.
// Designers look for a type in the design-time assembly that 
// implements IProvideAttributeTable. If found, designers instantiate 
// this class and access its AttributeTable property automatically.
internal class Metadata : IProvideAttributeTable
{
    // Accessed by the designer to register any design-time metadata.
    public AttributeTable AttributeTable
    {
        get 
        {
            AttributeTableBuilder builder = new AttributeTableBuilder();

            builder.AddCustomAttributes(
                typeof(ButtonWithDesignTime),
                new ToolboxBrowsableAttribute(true));

            return builder.CreateTable();
        }
    }
}

Zabezpečení rozhraní .NET Framework

Viz také

Odkaz

ToolboxBrowsableAttribute Třída

Microsoft.Windows.Design – obor názvů

AttributeTableBuilder

Další zdroje

Walkthrough: Creating a Design-time Adorner