4

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

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

该调用不会引发任何异常,但我看不到我想要处理的线路上的任何变化。有什么我想念的吗?

4

1 回答 1

5

您在IntializeComponent()添加此内容时又少了一行:

this.myListBox.DrawMode = DrawMode.OwnerDrawFixed;

在附加事件之前。

于 2013-06-24T13:15:03.687 回答