DataGridViewComboBoxColumn
Hello Gurus.
How do I set a default value in the comboboxcolumn? I want the user to see the default value "Normal".
Here is my code:
DataGridViewComboBoxColumn myCom = new DataGridViewComboBoxColumn();
myCom.HeaderText = "Priority";
myCom.DataPropertyName = "Priority";
myCom.Items.Add("Normal");
myCom.Items.Add("Urgent");
Thanks!
|