如何在列表视图中设置特定列的字体颜色? 我在listview中有两列,我想将第二列中的字体设置为红色。
答案 0 :(得分:2)
使用ListView.DrawColumnHeader
活动
private void listView1_DrawColumnHeader(object sender, DrawListViewColumnHeaderEventArgs e)
{
// Draw the header text.
using (Font headerFont =
new Font("Helvetica", 10, FontStyle.Bold, FontColor.Red))
{
e.Graphics.DrawString(e.Header.Text, headerFont,
Brushes.Black, e.Bounds, sf);
}
}