DataGridView中在新增行时怎样设置每个Cell单元格的字体样式
生活随笔
收集整理的這篇文章主要介紹了
DataGridView中在新增行时怎样设置每个Cell单元格的字体样式
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
場景
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);//添加的行作為最后一行效果
?
與50位技術專家面對面20年技術見證,附贈技術全景圖總結
以上是生活随笔為你收集整理的DataGridView中在新增行时怎样设置每个Cell单元格的字体样式的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: DataGridView中获取与设置当前
- 下一篇: Ubuntu Server 上在安装Ng