winform datagridview 设置单元格字体的样式。并添加下划线。

如图。给单元格的添加下划线。

 

 主要思路是在cellformating这个事件中设定。代码如下:

 

ExpandedBlockStart.gif View Code
 1    private   void  dataGridView1_CellFormatting( object  sender, DataGridViewCellFormattingEventArgs e)
 2          {
 3               if  (isFirstCellFormatting)
 4              {
 5                   int  r  =   0 ;
 6                   if  (e.RowIndex  <   0 )
 7                  {
 8                      r  =   0 ;
 9                  }
10                   else
11                  {
12                      r  =  e.RowIndex;
13                  }
14                  dataGridView1.Rows[r].Cells[e.ColumnIndex].Style.Font  =   new  Font( " 宋体 " 12 , FontStyle.Underline);
15                  dataGridView1.Rows[r].Cells[e.ColumnIndex].Style.ForeColor  = Color.Blue;
16                  dataGridView1.Rows[r].Cells[e.ColumnIndex].ToolTipText  =   string .Format( " 我是第{0}行,第{1}列的单元格 " , r, e.ColumnIndex);
17                
18              }
19            }

 

同时,也可以手动设置字体的样式。

如我单击”更改下划线“按钮,下划线将删除

代码如下

ExpandedBlockStart.gif View Code
1     // 设置没有字体的下划线
2           private  Font FontNoUnderLine {  get set ; }
3   FontNoUnderLine  =   new  System.Drawing.Font( " 宋体 " 12 );
4 
5     dataGridView1[ 3 3 ].Style.Font  =  FontNoUnderLine;
6              dataGridView1[ 3 3 ].Style.ForeColor  =  Color.Red;

 

 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值