当我选择一行时,如何使 datagridview 行文本以粗体显示? [英] How to make the datagridview line text in bold when I pick a row?

查看:44
本文介绍了当我选择一行时,如何使 datagridview 行文本以粗体显示?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在选择一行时将 datagridview 行文本设为粗体?

How do I make the datagridview line text in bold when I pick a row?

推荐答案

处理 CellFormatting 事件的 DataGridView 并在单元格属于选定行时对字体应用粗体样式:

Handle the CellFormatting event of the DataGridView and apply a bold style to the font if the cell belongs to a selected row:

private void dataGridView1_CellFormatting(object sender, DataGridViewCellFormattingEventArgs e)
{
  var dataGridView = sender as DataGridView;
  if (dataGridView.Rows[e.RowIndex].Selected)
  {
    e.CellStyle.Font = new Font(e.CellStyle.Font, FontStyle.Bold);
    // edit: to change the background color:
    e.CellStyle.SelectionBackColor = Color.Coral;
  }
}

这篇关于当我选择一行时,如何使 datagridview 行文本以粗体显示?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆