場景 DataGridView怎樣實現添加、刪除、上移、下移一行: https://blog.csdn.net/BADAO_LIUMANG_QIZHI/article/details/102814145 在上面中應用到了新增一行時如果對某個單元格中的字體大小、是否加粗、字體居中顯示等有要求,要怎樣設 ...
場景
DataGridView怎樣實現添加、刪除、上移、下移一行:
https://blog.csdn.net/BADAO_LIUMANG_QIZHI/article/details/102814145
在上面中應用到了新增一行時如果對某個單元格中的字體大小、是否加粗、字體居中顯示等有要求,要怎樣設置。
註:
博客主頁:
https://blog.csdn.net/badao_liumang_qizhi
關註公眾號
霸道的程式猿
獲取編程相關電子書、教程推送與免費下載。
實現
DataGridViewRow dr = new DataGridViewRow(); dr.CreateCells(this.dataGridView_Task_ViewEdit); //第一個單元格不賦值 //dr.Cells[0].Value = "1111"; dr.Cells[1].Value = "步_" + (this.dataGridView_Task_ViewEdit.Rows.Count + 1).ToString(); Font font = new Font("宋體",14,FontStyle.Bold); dr.Cells[2].Style.Font = font; dr.Cells[2].Style.Alignment = DataGridViewContentAlignment.MiddleCenter; dr.Cells[2].Value = "擱置"; dr.Cells[3].Style.Alignment = DataGridViewContentAlignment.MiddleCenter; dr.Cells[3].Value = "步時間>0.000秒 下一步"; dr.Cells[4].Style.Alignment = DataGridViewContentAlignment.MiddleCenter; dr.Cells[4].Value = "時間>1.000秒"; dr.Cells[5].Style.Alignment = DataGridViewContentAlignment.MiddleCenter; dr.Cells[5].Value = "低"; dr.Cells[6].Style.Alignment = DataGridViewContentAlignment.MiddleCenter; dr.Cells[6].Value = "0"; this.dataGridView_Task_ViewEdit.Rows.Add(dr);//添加的行作為最後一行
效果