I have a requirement to show drop down list to one particular row among several rows. My dataGridView has 2 columns (Parameter and Value) and I am adding 3 rows dynamically in code. For all 3 rows, paramter texts are fixed and can't be modified by user. For first row, Parameter text is "prm1" and Value text will be chosen from drop down list. other 2 rows, Value text will be text box entered by User. I tried searching but couldn't find the answer. Please help me here.
|
It is possible to replace specific DataGridView cells at run time - in your situation for example where you want a combobox in one cell you can have a DataGridViewTextBoxColumn and replace the cell in the first row. Something like this:
You can also do this the other way and replace a particular combobox cell from a DataGridViewComboBoxColumn with a DataGridViewTextBoxCell. One thing though - while this will work, better usability might just come from setting some combo boxes to read only. |
|||
|
|
|
Please consider adding of ComboBox column to grid with right-click context menu item Edit Columns... of the grid in Form Designer. To add column it will require to click on Add button of Edit Columns dialog and subsequently select Type =
Please note: You will also need to use either Items or DataSource property of the column to populate drop-down list of the ComboBox. |
||||
|
|


DataGridViewComboboxCelland just set this to read-only for certain rows, rather than trying to have the column's cell type different dependant on row. – Bridge Aug 10 '12 at 11:55