0

大家好,

我正在用 VB.NET 和 C# 开发桌面应用程序,我已经掌握了简单页面 CRUD 应用程序的每个概念,现在我正在开发具有主事务表概念的页面,我需要在 datagridview 中绑定组合框,但是我我没有办法做到这一点,

因此,我们将不胜感激有关此主题的任何帮助,

提前致谢

4

1 回答 1

0

如果您有 DataGridViewComboBoxColumn 然后将此列中的每个 ComboBoxCell 绑定到给定的数据源,您可以这样做:

private void Bind(ICollection<YourObject> source)
{
     //assume col is the combobox column
     col.DisplayMember = "Name";  //name of property that will be displayed in combo box
     col.ValueMember = "Id";      
     col.DataSource = source;
}

就是这样:)。

于 2013-02-05T12:53:40.110 回答