-
Notifications
You must be signed in to change notification settings - Fork 1
net472_PropertyGridHelpers.ControlsNamespace
dparvin edited this page Jul 5, 2025
·
14 revisions
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 displayed in a checklist box for editing bitwise enum values (flags). This item stores both the integer flag value and a user-friendly caption. |
| class ItemWrapper<T> | Represents a strongly-typed wrapper for a ComboBox item, associating custom display text with an underlying value. |