AttributeCallbackBuilder.AddCustomAttributes 方法 (String, array<Attribute[])

[本文档仅供预览,在以后的发行版中可能会发生更改。包含的空白主题用作占位符。]

将特性添加到具有指定名称的成员。

命名空间:  Microsoft.Windows.Design.Metadata
程序集:  Microsoft.Windows.Design.Extensibility(在 Microsoft.Windows.Design.Extensibility.dll 中)

语法

声明
Public Sub AddCustomAttributes ( _
    memberName As String, _
    ParamArray attributes As Attribute() _
)
public void AddCustomAttributes(
    string memberName,
    params Attribute[] attributes
)
public:
void AddCustomAttributes(
    String^ memberName, 
    ... array<Attribute^>^ attributes
)
member AddCustomAttributes : 
        memberName:string * 
        attributes:Attribute[] -> unit 
public function AddCustomAttributes(
    memberName : String, 
    ... attributes : Attribute[]
)

参数

  • memberName
    类型:System.String
    要为其添加特性的成员。仅支持属性和事件成员;将忽略任何其他项。
  • attributes
    类型:array<System.Attribute[]
    要添加的新特性的数组。

异常

异常 条件
ArgumentNullException

memberName 或 attributes 为 nulla null reference (Nothing in Visual Basic)。

备注

该成员可以是属性或事件。 用户查询给定属性或事件上的特性时,将按需计算成员。

示例

下面的代码示例演示如何使用 AttributeCallbackBuilder 类将特性添加到成员中。 此代码示例摘自为 AttributeCallbackBuilder 类提供的一个更大的示例。

// Apply the ReadOnlyAttribute to the Background property 
// of the Button class.
callbackBuilder.AddCustomAttributes(
    "Background",
    new ReadOnlyAttribute(true));

.NET Framework 安全性

请参见

参考

AttributeCallbackBuilder 类

AddCustomAttributes 重载

Microsoft.Windows.Design.Metadata 命名空间

AttributeTableBuilder

AddCallback

AttributeTable