DOBON.NET DOBON.NETプログラミング掲示板過去ログ

自作クラスのDataGridへのバインドについて

環境/言語:[win2000Pro、C#、FrameWorkv1.1.4322]
分類:[.NET]

こんにちは。
開発環境:VisualStudio.NET2003
言語:C#
Windowsアプリケーションの開発をしています。

自作クラスのDataGridへバインドしようと思い、
下記のコードで実現出来たのですが、
表示する列を指定したり、
表示する列の順番を変更する方法がわかりません。
対処方法をご教授下さい。
よろしくお願いします。


using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;

namespace WindowsApplication8
{
/// <summary>
/// Form1 の概要の説明です。
/// </summary>
public class Form1 : System.Windows.Forms.Form
{
private System.Windows.Forms.DataGrid dataGrid1;
/// <summary>
/// 必要なデザイナ変数です。
/// </summary>
private System.ComponentModel.Container components = null;

public Form1()
{
//
// Windows フォーム デザイナ サポートに必要です。
//
InitializeComponent();

//
// TODO: InitializeComponent 呼び出しの後に、コンストラクタ コードを追加してください。
//
}

/// <summary>
/// 使用されているリソースに後処理を実行します。
/// </summary>
protected override void Dispose( bool disposing )
{
if( disposing )
{
if (components != null)
{
components.Dispose();
}
}
base.Dispose( disposing );
}

#region Windows フォーム デザイナで生成されたコード
/// <summary>
/// デザイナ サポートに必要なメソッドです。このメソッドの内容を
/// コード エディタで変更しないでください。
/// </summary>
private void InitializeComponent()
{
this.dataGrid1 = new System.Windows.Forms.DataGrid();
((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).BeginInit();
this.SuspendLayout();
//
// dataGrid1
//
this.dataGrid1.DataMember = "";
this.dataGrid1.HeaderForeColor = System.Drawing.SystemColors.ControlText;
this.dataGrid1.Location = new System.Drawing.Point(8, 8);
this.dataGrid1.Name = "dataGrid1";
this.dataGrid1.Size = new System.Drawing.Size(456, 248);
this.dataGrid1.TabIndex = 0;
//
// Form1
//
this.AutoScaleBaseSize = new System.Drawing.Size(5, 12);
this.ClientSize = new System.Drawing.Size(472, 266);
this.Controls.Add(this.dataGrid1);
this.Name = "Form1";
this.Text = "Form1";
this.Load += new System.EventHandler(this.Form1_Load);
((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).EndInit();
this.ResumeLayout(false);

}
#endregion

/// <summary>
/// アプリケーションのメイン エントリ ポイントです。
/// </summary>
[STAThread]
static void Main()
{
Application.Run(new Form1());
}

private void Form1_Load(object sender, System.EventArgs e)
{
MyList aMyList = new MyList();
this.dataGrid1.SetDataBinding(aMyList, "");
}
}

public class MyList :System.Collections.CollectionBase
{
public MyList()
{
MyListData aMyListData = new MyListData();

aMyListData.F1 = "1-1";
aMyListData.F2 = "1-2";
aMyListData.F3 = "1-3";
List.Add(aMyListData);

aMyListData.F1 = "2-1";
aMyListData.F2 = "2-2";
aMyListData.F3 = "2-3";
List.Add(aMyListData);
}

public MyListData this [int index]
{
get
{
return (MyListData)List[index];
}
}
}

public class MyListData
{
private string m_F1;
private string m_F2;
private string m_F3;

public string F1
{
get
{
return m_F1;
}
set
{
m_F1 = value;
}
}

public string F2
{
get
{
return m_F2;
}
set
{
m_F2 = value;
}
}

public string F3
{
get
{
return m_F3;
}
set
{
m_F3 = value;
}
}
}
}
> 表示する列を指定したり、
> 表示する列の順番を変更する方法がわかりません。
> 対処方法をご教授下さい。

 DataGridTableStyle を設定すれば良い、とかそういう話ではないのでしょうか?
 こちらのサイトの DataGrid の Tips に一通り目を通してみてください。

DataGridコントロール(System.Windows.Forms)編メニュー
http://dobon.net/vb/dotnet/datagrid/index.html

DOBON.NET | プログラミング道 | プログラミング掲示板