共用方式為


ModelService.CreateStaticMemberItem 方法

在衍生類別中覆寫時,建立新模型項目,該模型項目表示指定之類別的靜態成員值。

命名空間:  Microsoft.Windows.Design.Services
組件:  Microsoft.Windows.Design.Interaction (在 Microsoft.Windows.Design.Interaction.dll 中)

語法

'宣告
Protected MustOverride Function CreateStaticMemberItem ( _
    type As Type, _
    memberName As String _
) As ModelItem
protected abstract ModelItem CreateStaticMemberItem(
    Type type,
    string memberName
)
protected:
virtual ModelItem^ CreateStaticMemberItem(
    Type^ type, 
    String^ memberName
) abstract
abstract CreateStaticMemberItem : 
        type:Type * 
        memberName:string -> ModelItem 
protected abstract function CreateStaticMemberItem(
    type : Type, 
    memberName : String
) : ModelItem

參數

  • type
    型別:System.Type
    包含參考之靜態成員的型別。
  • memberName
    型別:System.String
    參考之靜態成員的名稱。

傳回值

型別:Microsoft.Windows.Design.Model.ModelItem
新建立的模型項目,這個項目表示 type 的靜態成員。

備註

CreateStaticMemberItem 方法會建立新的模型項目,這個項目表示 type 的靜態成員值。 例如,若要將 Brushes.Red 的參考加入至模型,請使用 typeof(Brushes) 和字串 "Red" 呼叫這個方法。 這個項目已序列化為下列 XAML。

[xaml]

{x:Static Brushes.Red}

.NET Framework 安全性

請參閱

參考

ModelService 類別

Microsoft.Windows.Design.Services 命名空間

ModelItem

ViewService

DesignerView

ContextItemManager

其他資源

編輯模型架構

WPF 設計工具擴充性