PowerTools MultiRow for Windows Forms 8.0J
DataMember プロパティ (GcComboBoxCell)
使用例 

バインドしているメンバの文字列を表す値を取得または設定します。
構文
Public Property DataMember As String
public string DataMember {get; set;}

プロパティ値

バインドしているメンバを示すstring値。
使用例
以下はデータバインディングのサンプルコードです。このコードは DataSource のサンプルコードの一部です。
private void Form1_Load(object sender, EventArgs e)
{
    GcComboBoxCell gcComboBoxCell1 = new GcComboBoxCell();
    gcComboBoxCell1.DropDown.Size = new Size(120, 80);
    //Set the DataSource.
    gcComboBoxCell1.DataSource = CreateDateTable1();

    Template template1 = Template.CreateGridTemplate(new Cell[] { gcComboBoxCell1, gcComboBoxCell1.Clone() as Cell }, 200,
        AutoGenerateGridTemplateStyles.ColumnHeader | AutoGenerateGridTemplateStyles.RowHeaderAutoNumber);

    gcMultiRow1.Template = template1;
    gcMultiRow1.RowCount = 3;
}
Private Sub Form1_Load(ByVal sender As Object, ByVal e As EventArgs) Handles Me.Load
    Dim gcComboBoxCell1 As New GcComboBoxCell()
    gcComboBoxCell1.DropDown.Size = New Size(120, 80)
    'Set the DataSource.
    gcComboBoxCell1.DataSource = CreateDateTable1()

    Dim template1 As Template = Template.CreateGridTemplate(New Cell() {gcComboBoxCell1, TryCast(gcComboBoxCell1.Clone(), Cell)}, 200, AutoGenerateGridTemplateStyles.ColumnHeader Or AutoGenerateGridTemplateStyles.RowHeaderAutoNumber)

    gcMultiRow1.Template = template1
    gcMultiRow1.RowCount = 3
End Sub
参照

GcComboBoxCell クラス
GcComboBoxCell メンバ
DataSource プロパティ

 

 


© 2008-2015 GrapeCity inc. All rights reserved.