按C#中的代码设置列表框项的字体和颜色

时间:2013-06-24 13:08:45

标签: c# winforms listbox

我正忙于一个自定义列表框,我在c#中用作注册阅读器。现在,我想在一个确定的项目中设置一个确定的项目,其中的字体和颜色与其他项目不同。我检查了This question并从答案中得到了以下代码:

private void myListBox_DrawItem(object sender, System.Windows.Forms.DrawItemEventArgs e)
{
    e.DrawBackground();
    Font myFont;
    Brush myBrush;
    int i = e.Index;

    if (e.Index == 3)
    {
        myFont = e.Font;
        myBrush = Brushes.Black;
    }
    else
    {
        myFont = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Bold);
        myBrush = Brushes.CadetBlue;
    }

    e.Graphics.DrawString(myListBox.Items[i].ToString(), myFont, myBrush, e.Bounds, StringFormat.GenericDefault);
}

使用

在我的IntializeComponent()中调用该方法
this.myListBox.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.myListBox_DrawItem);

调用不会抛出任何异常,但我看到我想要处理的行没有变化。有什么我想念的吗?

1 个答案:

答案 0 :(得分:5)

您在IntializeComponent()添加以下内容中还缺少一行:

this.myListBox.DrawMode = DrawMode.OwnerDrawFixed;
在附加活动之前