0

Sql Server 2005 では、Form Load でこのコードを記述します。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);

動作しますが、列ヘッダーと行ヘッダーが含まれていません...

4

1 に答える 1

1

これはあなたにぴったりです。

于 2013-03-14T13:07:55.767 に答える