如何在列表视图中为特定列设置字体颜色?我在列表视图中有两列,我想将第二列中的字体设置为红色。
问问题
879 次
1 回答
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);
}
}
于 2012-10-31T05:40:59.440 回答