您好,下面的代码是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);
复制代码 |