vote up 0 vote down star

I have a DataGridView where one of the columns is a DataGridViewComboBoxColumn. When the grid is populated, that column looks different because of the drop-down arrow appearing on each cell in the column. I'd like to change this so that the drop-down arrow is hidden and only shows up when the row is actually highlighted or when the combobox cell is selected for editing. The behavior I wanted is like how the Properties window in Visual Studio handles its values.

flag

2 Answers

vote up 1 vote down check

In the DataGridViewComboBoxColumn, there is a property called DisplayStyle. Set it to Nothing to hide the DropDownButton

Further information about the DataGridViewComboBoxDisplayStyle enumeration is available at this MSDN link

link|flag
Perfect! Just what I was looking for. – dawntrader Jul 10 at 22:40
In that case, it might be a good idea to mark it as the accepted answer – Joe Schmoe Jul 11 at 6:20
vote up -1 vote down

I'm fairly certain the only way to do this is with CSS.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.