在 Sql Server 2005 中,在表单加载中我编写了这段代码。txtPrprCase 是一个 UserControl 并验证第一个字符为大写。如何将此控件添加到 DataGridView。我尝试以下代码。但它不起作用。
ciscontrols.txtPrprCase txt = new ciscontrols.txtPrprCase();
txt.Name = "Customer Name";
this.dataGridView2.RowCount = 1;
foreach (DataGridViewRow row in dataGridView2.Rows)
{
row.Cells[0].Value = txt;
}
以下代码用于验证
ciscontrols.txtPrprCase txt = new ciscontrols.txtPrprCase();
this.dataGridView2.Rows.add(txt);
它可以工作,但它不包含列标题和行标题...