を取り込むことができませんでしたが、取得エラー、次のセルテンプレートを提供していないDataGridViewColumn
のでは、私はDataTableのからの人口のDataGridView午前のDataGridView
At least one of the DataGridView control's columns has no cell template
private void PopulateGridView(DataTable dt)
{
if (dt != null)
{
dataGridView1.Columns.Clear();
dataGridView1.DataSource = null;
foreach (DataColumn col in dt.Columns)
{
//Declare the bound field and allocate memory for the bound field.
DataGridViewColumn datacolumn = new DataGridViewColumn();
//Initalize the DataField value.
datacolumn.DataPropertyName = col.ColumnName;
datacolumn.Name = col.ColumnName;
//Initialize the HeaderText field value.
datacolumn.HeaderText = col.ColumnName;
//Add the newly created bound field to the GridView.
this.dataGridView1.Columns.Add(datacolumn); // ** Error **
}
//Initialize the DataSource
this.dataGridView1.DataSource = dt;
}
「this.dataGridView1.DataSource = dt;」を実行するだけで何が問題になりますか? – CatchingMonkey