AttributeCallbackBuilder.AddCustomAttributes 方法 (String, array<Attribute )
會將屬性 (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
要為其加入屬性 (Attribute) 的成員。所支援的只有屬性 (Property) 和事件成員,其他所有項目都會遭忽略。
- attributes
型別:array<System.Attribute[]
要加入的新屬性之陣列。
例外狀況
例外狀況 | 條件 |
---|---|
ArgumentNullException | memberName 或 attributes 是 nullNull 參照 (即 Visual Basic 中的 Nothing)。 |
備註
成員可以是屬性 (Property) 或事件。 當使用者查詢指定之屬性 (Property) 或事件的屬性 (Attribute) 時,就會視需要評估這個成員。
範例
下列程式碼範例顯示如何使用 AttributeCallbackBuilder 類別,將屬性 (Attribute) 加入至成員。 這個程式碼範例是 AttributeCallbackBuilder 類別完整範例的一部分。
// Apply the ReadOnlyAttribute to the Background property
// of the Button class.
callbackBuilder.AddCustomAttributes(
"Background",
new ReadOnlyAttribute(true));
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。