DataGridView中在新增行時怎樣設置每一個Cell單元格的字體樣式

場景

DataGridView怎樣實現添加、刪除、上移、下移一行:編程

https://blog.csdn.net/BADAO_LIUMANG_QIZHI/article/details/102814145字體

在上面中應用到了新增一行時若是對某個單元格中的字體大小、是否加粗、字體居中顯示等有要求,要怎樣設置。this

注:spa

博客主頁:
https://blog.csdn.net/badao_liumang_qizhi
關注公衆號
霸道的程序猿
獲取編程相關電子書、教程推送與免費下載。 .net

實現

 

           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);//添加的行做爲最後一行

 

效果

 

 

相關文章
相關標籤/搜索