UserControlComboBoxColumnDropDownControl Property

The user control type to use for the drop-down

Definition

Namespace: EWSoftware.ListControls.DataGridViewControls
Assembly: EWSoftware.ListControls (in EWSoftware.ListControls.dll) Version: 2023.4.9.0
public Type DropDownControl { get; set; }

Property Value

Type

Remarks

This property must be set in order for the drop-down to be of any use

Example

C#
// TreeViewDropDown is a user control derived from DropDownControl
ucCombo.DropDownControl = typeof(TreeViewDropDown);

Exceptions

ArgumentExceptionThis is thrown if the specified type is not derived from DropDownControl.

See Also