當前位置:
首頁 >
DataGridView中在新增行时怎样设置每个Cell单元格的字体样式
發(fā)布時間:2025/3/19
43
豆豆
生活随笔
收集整理的這篇文章主要介紹了
DataGridView中在新增行时怎样设置每个Cell单元格的字体样式
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
場景
DataGridView怎樣實現(xiàn)添加、刪除、上移、下移一行:
https://blog.csdn.net/BADAO_LIUMANG_QIZHI/article/details/102814145
在上面中應(yīng)用到了新增一行時如果對某個單元格中的字體大小、是否加粗、字體居中顯示等有要求,要怎樣設(shè)置。
注:
博客主頁:
https://blog.csdn.net/badao_liumang_qizhi
關(guān)注公眾號
霸道的程序猿
獲取編程相關(guān)電子書、教程推送與免費下載。
實現(xiàn)
??????????? 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);//添加的行作為最后一行效果
?
與50位技術(shù)專家面對面20年技術(shù)見證,附贈技術(shù)全景圖總結(jié)
以上是生活随笔為你收集整理的DataGridView中在新增行时怎样设置每个Cell单元格的字体样式的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: DataGridView中获取与设置当前
- 下一篇: DevExpress的下拉框控件Comb