In This Article

ICategoryEditorModel Interface

Provides the requirements for a property grid category editor IDataModel, that can consume and display one or more properties.

public interface ICategoryEditorModel : IDataModel, IDisposable

Properties

Category

Gets the category associated with this editor.

string Category { get; }

Property Value

string:

The category associated with this editor.

EditorTemplate

Gets the DataTemplate to use for editing the properties consumed by this editor.

DataTemplate EditorTemplate { get; }

Property Value

DataTemplate:

The DataTemplate to use for editing the properties consumed by this editor.

Remarks

The priority order of editor template specification is EditorTemplate and then EditorTemplateKey.

EditorTemplateKey

Gets the resource key that references a DataTemplate to use for editing the properties consumed by this editor.

object EditorTemplateKey { get; }

Property Value

object:

The resource key that references a DataTemplate to use for editing the properties consumed by this editor.

Remarks

The priority order of editor template specification is EditorTemplate and then EditorTemplateKey.

Inherited Members