net472_PropertyGridHelpers.ControlsNamespace - dparvin/PropertyGridHelpers GitHub Wiki
The PropertyGridHelpers.Controls namespace contains controls used in the property grid.
public type | description |
---|---|
class AutoCompleteComboBox | A specialized ComboBox designed for use in a PropertyGrid drop-down editor, supporting auto-completion and value commitment handling. |
class FlagCheckedListBox | A custom CheckedListBox control designed for editing properties backed by [Flags] enumerations. It presents each enum value as a checkbox, allowing users to select multiple values that combine into a composite flag. This control is typically hosted in a drop-down editor (e.g., UITypeEditor) using DropDownVisualizer to support property editing within a PropertyGrid. |
class FlagCheckedListBoxItem | Represents an item in the CheckListBox |
class ItemWrapper<T> | Represents a wrapper for items in a ComboBox that allows for custom display text and value. |