本文介绍了如何使用C#在DataGridView中的DataGridViewComboBoxColumn项上强加多选的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我的表单中有一个DataGridView,并将项目添加到DataGridViewComboBoxColumn,现在我需要从DataGridViewComboBoxCell中选择多个项目。
Hi,
I have a DataGridView in my form and added items to DataGridViewComboBoxColumn, now I have a requirement to select multiple items from the DataGridViewComboBoxCell.
DataGridViewComboBoxCell c = new DataGridViewComboBoxCell();
c.Items.Add("Red");
c.Items.Add("Green");
dgvDataIntegration.CurrentRow.Cells[3] = c;
dgvDataIntegration.CurrentRow.Cells[3].Value = c.Items[0];
您能否提出解决方案,我们该怎么做呢。
提前致谢。
Zulur
Can you suggest the solution, how can we do this.
Thanks in advance.
Zulur
推荐答案
这篇关于如何使用C#在DataGridView中的DataGridViewComboBoxColumn项上强加多选的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!