datagridview with datasource and combobox

青春壹個敷衍的年華 提交于 2019-12-10 10:27:23

问题


I have a datagridview with a datasource attached to it made of a custom datatable:

DataTable: 0 = Dictionary 1 = string 2 = string

the datagridview is editable, however for column 0 I need to show a combobox instead of a text field. How do I go about achieving this?

internal Dictionary<int, string> products_list = new Dictionary<int, string>();
products_list.Add(0, "Test Product 1");
products_list.Add(1, "Test Product 2");


lines.Columns.Add(new DataColumn("Product", products_list.GetType()));
lines.Columns.Add(new DataColumn("QTY", typeof(int)));
lines.Columns.Add(new DataColumn("Description", typeof(string)));

dgvQuoteLines.DataSource = lines;
dgvQuoteLines.Columns[0].Visible = false;

* UPDATE * I have now managed to add the combobox to the datagridview but sadly the datasource isn't working!

DataGridViewComboBoxColumn colbox = new DataGridViewComboBoxColumn();
colbox.DataPropertyName = "0";
dgvQuoteLines.Columns.Add(colbox);

回答1:


I think this is what you want:

DataGridViewComboBoxColumn colbox = new DataGridViewComboBoxColumn();
colbox.DataSource = products_list.ToList();
colbox.ValueMember = "Key";
colbox.DisplayMember = "Value";
dgvQuoteLines.Columns.Add( colbox );

Look at the DataGridViewComboBoxColumn class.




回答2:


colBox.DataSource = products_list.Values.ToList();

?

What do you want to show up in the combobox?



来源:https://stackoverflow.com/questions/18656599/datagridview-with-datasource-and-combobox

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!