Click or drag to resize

PropertyGridTypeEditor Class

Interface for custom type editors of the PropertyGrid
Inheritance Hierarchy
SystemObject
  Eto.FormsPropertyGridTypeEditor

Namespace:  Eto.Forms
Assembly:  Eto (in Eto.dll) Version: 2.5.3-dev
Syntax
public abstract class PropertyGridTypeEditor

The PropertyGridTypeEditor type exposes the following members.

Constructors
  NameDescription
Protected methodPropertyGridTypeEditor
Initializes a new instance of the PropertyGridTypeEditor class
Top
Methods
  NameDescription
Public methodCreateControl
Creates the control for editing (and viewing for platforms that support it)
Public methodPaintCell
Paints the cell when viewing for platforms that don't support custom controls for non-editing cells (E.g. Gtk, WinForms).
Top
Remarks
Use the System.ComponentModel.EditorAttribute to specify the editor for a particular property or type. For example:
[Editor(typeof(MyEditorClass), typeof(PropertyGridTypeEditor))]
See Also