Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

CheckedComboBoxEdit.InternalListBox Property

Returns a CheckedListBoxControl that displays check items in the control’s dropdown.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

[Browsable(false)]
public CheckedListBoxControl InternalListBox { get; }

#Property Value

Type Description
CheckedListBoxControl

A CheckedListBoxControl embedded in the control’s dropdown.

#Remarks

The recommended approach to customizing settings of the embedded CheckedListBoxControl is using the properties and events provided by the CheckedComboBoxEdit.Properties object. Although direct customization of the InternalListBox object is possible, this capability should only be employed in advanced cases that are not covered by the settings and events available from the CheckedComboBoxEdit.Properties object.

The InternalListBox property is initialized when the dropdown window is opened for the first time. The object is not destroyed on closing the dropdown window. If the dropdown window has not been invoked, the InternalListBox property returns null.

To respond to showing a dropdown window, you can handle the RepositoryItemPopupBase.Popup event.

See Also