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 为 nullnull 引用(在 Visual Basic 中为 Nothing)。 |
备注
该成员可以是属性或事件。 用户查询给定属性或事件上的特性时,将按需计算成员。
示例
下面的代码示例演示如何使用 AttributeCallbackBuilder 类将特性添加到成员中。 此代码示例摘自为 AttributeCallbackBuilder 类提供的一个更大的示例。
// Apply the ReadOnlyAttribute to the Background property
// of the Button class.
callbackBuilder.AddCustomAttributes(
"Background",
new ReadOnlyAttribute(true));
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。