2
我有複選框列的datagridview,但我想,一些列單元格是文本框單元格。
是否有可能在一列中有多個單元格類型?如果是,那麼如何?DataGridView單元格類型
我有複選框列的datagridview,但我想,一些列單元格是文本框單元格。
是否有可能在一列中有多個單元格類型?如果是,那麼如何?DataGridView單元格類型
這裏有兩種方法可以做到這一點:
DataGridViewCell
到一個真實存在的某些細胞類型。例如,將DataGridViewTextBoxCell
轉換爲DataGridViewComboBoxCell
類型。DataGridView
的控件集合中,將其位置和大小設置爲適合要託管的單元格。見低於我的示例代碼說明了招數:
private void Form5_Load(object sender, EventArgs e)
{
DataTable dt = new DataTable();
dt.Columns.Add("name");
for (int j = 0; j < 10; j++) { dt.Rows.Add(""); }
this.dataGridView1.DataSource = dt;
this.dataGridView1.Columns[0].Width = 200;
// First method : Convert to an existed cell type such ComboBox cell, etc
DataGridViewComboBoxCell ComboBoxCell = new DataGridViewComboBoxCell();
ComboBoxCell.Items.AddRange(new string[] { "aaa","bbb","ccc" });
this.dataGridView1[0, 0] = ComboBoxCell;
this.dataGridView1[0, 0].Value = "bbb";
DataGridViewTextBoxCell TextBoxCell = new DataGridViewTextBoxCell();
this.dataGridView1[0, 1] = TextBoxCell;
this.dataGridView1[0, 1].Value = "some text";
DataGridViewCheckBoxCell CheckBoxCell = new DataGridViewCheckBoxCell();
CheckBoxCell.Style.Alignment = DataGridViewContentAlignment.MiddleCenter;
this.dataGridView1[0, 2] = CheckBoxCell;
this.dataGridView1[0, 2].Value = true;
// Second method : Add control to the host in the cell
DateTimePicker dtp = new DateTimePicker();
dtp.Value = DateTime.Now.AddDays(-10);
//add DateTimePicker into the control collection of the DataGridView
this.dataGridView1.Controls.Add(dtp);
//set its location and size to fit the cell
dtp.Location = this.dataGridView1.GetCellDisplayRectangle(0, 3,true).Location;
dtp.Size = this.dataGridView1.GetCellDisplayRectangle(0, 3,true).Size;
}
從here引用。
謝謝!這工作正常 – Brezhnews 2012-04-12 09:25:36
你想看到的例如:文本框和標籤在一列中的權利? – adt 2012-04-11 12:11:17
@ADT是的,這是正確的,但我想在一列中看到複選框和文本框 – Brezhnews 2012-04-11 13:05:29