Hi there,
I have a question regarding datagridview in C#, when a form loads I have given the command to add a new row to the datagrid view , and in that datagridview there is a combobox and has items In it.when the form loads I want one item in the datagrid view combo box to be displayed as default. How can I do this??
dgvActions.Rows.Add();
DataGridViewComboBoxColumn comboBox = (DataGridViewComboBoxColumn)dgvActions.Rows[0].Cells[2].OwningColumn;
//comboBox.Items.Clear();
comboBox.Items.Add("External Kick Off");