GcComboBox绑定值的问题
代码如下:Me.GcComboBox1.DataSource = dataset
Me.GcComboBox1.DataMember = "Table"
如何让下拉列表中的TEXT为dataset中某一列的值,下拉列表中VALUE为dataset中某一列的值。
问题已经收到,我这边验证后给您回复 您好,下面的代码是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); :hjyzw: :mj72:
页:
[1]