Reputation: 8141
I have a windows forms app (I don't have access to the source code) which has a control that looks like this:
On clicking the down arrow, the popup appears from which I can select.
Is this a standard control that I can use, if so which one is it?
If not, then what control comes closest to it?
Upvotes: 1
Views: 55
Reputation: 36
As @Hans Passant mentioned you can simply add a DropDown to a ComboBox. Here is a example from MSDN. If you dont want to do the whole thing prgramaticaly just add the controls manualy and check here to see how the databinding works.
Upvotes: 1