Adding items to a combobox in DataGridView
问题 I've a DataGridView in a winforms app. Apart from the 4 columns coming from the db table,I need to show an additional column having a combobox in the datagridview[may be using DataGridViewComboColumn?]. 2.And then I want to add different set of items to each combobox for every row. How do I go about this? Thanks. 回答1: You may try to add them via DataBindingComplete of the grid Something on these lines void dataGridView1_DataBindingComplete(object sender, DataGridViewBindingCompleteEventArgs e