fangyuan123 发表于 2020-4-10 14:11:56

GcComboBox绑定值的问题

代码如下:
Me.GcComboBox1.DataSource = dataset
Me.GcComboBox1.DataMember = "Table"
如何让下拉列表中的TEXT为dataset中某一列的值,下拉列表中VALUE为dataset中某一列的值。

Richard.Ma 发表于 2020-4-10 17:44:58

问题已经收到,我这边验证后给您回复

Richard.Ma 发表于 2020-4-13 14:21:53

您好,下面的代码是C#设置的方法,vb 的您可以参考来写,是一样的

this.gcComboBox2.DataSource = this.productBindingSource;

var column1 = new GrapeCity.Win.Editors.ListColumn();
column1.DataPropertyName = "ProductName"; // DataSet中ProductName列
column1.Header.Text = "Text"; // 下拉列表列头的值



var column2 = new GrapeCity.Win.Editors.ListColumn();
column2.DataPropertyName = "ProductID"; // DataSet中ProductID列
column2.Header.Text = "Value";



this.gcComboBox2.ListColumns.Clear(); //清除默认添加的列(自动从dataset中读取)
this.gcComboBox2.ListColumns.Add(column1);
this.gcComboBox2.ListColumns.Add(column2);

nobt 发表于 2023-8-1 17:01:36

:hjyzw:

Richard.Ma 发表于 2023-8-1 18:45:58

:mj72:
页: [1]
查看完整版本: GcComboBox绑定值的问题