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);//添加的行作為最后一行

 

效果

 

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM