c#combobox DrawItem - 令人耳目一新的问题

时间:2012-04-18 10:18:40

标签: c# combobox

我在组合框中创建了一个字体列表。我将它的DrawMode设置为OwnerDrawFixed,方法DrawItem很简单:

void cmbFonts_DrawItem(object sender, DrawItemEventArgs e)
{
    if (e.Index < 0) return;
    e.DrawBackground();

    Font newFont =
        new Font(cmbFonts.Items[e.Index].ToString(), this.DefaultFontSize);
    e.Graphics.DrawString(cmbFonts.Items[e.Index].ToString(),
                          newFont,
                          new SolidBrush(Color.Black),
                          new Rectangle(e.Bounds.Location, e.Bounds.Size));
    e.DrawFocusRectangle();
}

在一般情况下,它正常工作。鼠标滚动时出现问题。然后一些项目看起来像随机图形,直到它们被聚焦。有谁知道这个问题的解决方案?

1 个答案:

答案 0 :(得分:1)

无论索引如何,

始终调用e.DrawBackground()。修正:

void cmbFonts_DrawItem(object sender, DrawItemEventArgs e)
{
    e.DrawBackground();
    if (e.Index >= 0) {
       // etc...
    }
}