Reputation: 32926
I need to place a DevExpress combo edit where the drop-down is a TreeView. DevExpress has a bunch of partial explinations of this, but no complete source. Anyone have a sample?
Upvotes: 2
Views: 4397
Reputation: 32926
The solution is to use a PopupContainerEdit control. To do this you also create a PopupContainerControl, put a TreeView in the PopupContainerControl (set to fill size) and then have the PopupContainerEdit.Popup point to the PopupContainerControl.
Full source at DevExpress combo box with a TreeView dropdown
Upvotes: 2