91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

datagridview怎么實現手動添加行數據

發布時間:2022-04-19 13:40:38 來源:億速云 閱讀:207 作者:iii 欄目:開發技術

這篇“datagridview怎么實現手動添加行數據”文章的知識點大部分人都不太理解,所以小編給大家總結了以下內容,內容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“datagridview怎么實現手動添加行數據”文章吧。

datagridview手動添加行數據

我在做軟件模型界面時,通過功能按鈕觸發顯示的datagridview中,為了方便,需要一些數據,僅寫死數據就可以了,因此,不需要連接數據表,直接添加行就可以了。

代碼如下:

        int index = this.dataGridView1.Rows.Add();
        this.dataGridView1.Rows[index].Cells[0].Value = "1";
        this.dataGridView1.Rows[index].Cells[1].Value = "11";
        this.dataGridView1.Rows[index].Cells[2].Value = "1111";
        this.dataGridView1.Rows[index].Cells[3].Value = "11111";
        this.dataGridView1.Rows[index].Cells[4].Value = "111111";
        this.dataGridView1.Rows[index].Cells[5].Value = "1111111";
        this.dataGridView1.Rows[index].Cells[6].Value = "*-*";

datagridview添加行的幾種方式

1、數據綁定

dataGridView1.AutoGenerateColumns = true;
dataGridView1.DataSource = customersDataSet;

這樣就會自動產生對應數據的行數據了。如果不自動產生列,則需手動添加列,把列的數據源屬性名(DataPropertyName)設置為對應數據類的屬性名。

2、手動添加

   songsDataGridView.ColumnCount = 5;
   ....
   songsDataGridView.Columns[0].Name = "Release Date";
   ....

string[] row0 = { "11/22/1968", "29", "Revolution 9", 
"Beatles", "The Beatles [White Album]" };
songsDataGridView.Rows.Add(row0);

另外,訪問行單元格的方式可以這樣

this.dataGridView1.Rows[1].Cells[0].Value = "new value";
//或者,等價的
this.dataGridView1[0, 1].Value = "new value";

以上就是關于“datagridview怎么實現手動添加行數據”這篇文章的內容,相信大家都有了一定的了解,希望小編分享的內容對大家有幫助,若想了解更多相關的知識內容,請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

晋州市| 沁阳市| 囊谦县| 道真| 金昌市| 乌拉特后旗| 喀喇沁旗| 黔南| 怀仁县| 南雄市| 黑山县| 西安市| 明水县| 合山市| 达孜县| 乌海市| 大石桥市| 星子县| 九江市| 平果县| 独山县| 肇源县| 辽源市| 祁门县| 寻乌县| 邮箱| 沙河市| 武清区| 都兰县| 临颍县| 黑山县| 阆中市| 连城县| 琼中| 垦利县| 大连市| 嘉禾县| 英超| 浦县| 正宁县| 磐安县|