views:

21

answers:

1

I am dynamically adding a ToolStripComboBox, and I need it to look like a regular combo box.

The tool strip version has the editable field and looks completely different. Is there a property (or multiple properties) I need to set to make it look and feel like the default combo box?

A: 

Set FlatStyle to FlatStyle.Standard; this will give you the same dropdown arrow button. Set DropDownStyle to ComboBoxStyle.DropDownList; this will make it so that you can select but not edit.

msergeant