我正忙于一个定制的列表框,我用它作为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);
}
并使用
this.myListBox.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.myListBox_DrawItem);
调用不会抛出任何异常,但我在要处理的行上没有看到任何更改。有什么我遗漏的吗?
最佳答案
您的IntializeComponent()
中又少了一行,请添加:
this.myListBox.DrawMode = DrawMode.OwnerDrawFixed;
在附加事件之前。