Imports GrapeCity.Web.Input.Core.ListBox
' ヘッダを表示します。
GcComboBox1.ListBox.HeaderPane.Visible = True
' カラムを作成します。
Dim lc1 As New ListColumn("氏名1")
lc1.DataPropertyName = "姓"
Dim lc2 As New ListColumn("氏名2")
lc2.DataPropertyName = "名"
' コンボコントロールにカラムを追加します。
GcComboBox1.ListBox.Columns.Add(lc1)
GcComboBox1.ListBox.Columns.Add(lc2)
' データソースに接続します。
GcComboBox1.DataSource = AccessDataSource1
GcComboBox1.DataBind()
using GrapeCity.Web.Input.Core.ListBox;
// ヘッダを表示します。
GcComboBox1.ListBox.HeaderPane.Visible = true;
// カラムを作成します。
ListColumn lc1 = new ListColumn("氏名1");
lc1.DataPropertyName = "姓";
ListColumn lc2 = new ListColumn("氏名2");
lc2.DataPropertyName = "名";
// コンボコントロールにカラムを追加します。
GcComboBox1.ListBox.Columns.Add(lc1);
GcComboBox1.ListBox.Columns.Add(lc2);
// データソースに接続します。
GcComboBox1.DataSource = AccessDataSource1;
GcComboBox1.DataBind();