UserControlComboBoxDropDownControl Property
The user control type to use for the drop-down
Namespace: EWSoftware.ListControlsAssembly: EWSoftware.ListControls (in EWSoftware.ListControls.dll) Version: 2023.4.9.0
public Type DropDownControl { get; set; }
Public Property DropDownControl As Type
Get
Set
public:
property Type^ DropDownControl {
Type^ get ();
void set (Type^ value);
}
member DropDownControl : Type with get, set
Property Value
Type This property must be set in order for the drop-down to be of any use
// TreeViewDropDown is a user control derived from DropDownControl
ucCombo.DropDownControl = typeof(TreeViewDropDown);
' TreeViewDropDown is a user control derived from DropDownControl
ucCombo.DropDownControl = GetType(TreeViewDropDown)
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
ArgumentException | This is thrown if the specified type is not derived from
DropDownControl. |