gpt4 book ai didi

c# - 当我选择一行时,如何使 datagridview 行文本变为粗体?

转载 作者:太空狗 更新时间:2023-10-29 18:08:42 25 4
gpt4 key购买 nike

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

最佳答案

处理 CellFormatting DataGridView的事件如果单元格属于选定行,则对字体应用粗体样式:

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;
}
}

关于c# - 当我选择一行时,如何使 datagridview 行文本变为粗体?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7696300/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com