如何在列表视图中设置特定列的字体颜色?

时间:2012-10-31 05:11:12

标签: c# winforms visual-studio-2010

如何在列表视图中设置特定列的字体颜色? 我在listview中有两列,我想将第二列中的字体设置为红色。

1 个答案:

答案 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);
            }
    }