Graham
Graham

Reputation: 8141

Looking for a windows form control

I have a windows forms app (I don't have access to the source code) which has a control that looks like this:

enter image description here

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

Answers (1)

P.Haldemann
P.Haldemann

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

Related Questions