When the the combo contains lots of items, the combo is dropped down and you scroll the drop down list up and down, the items in the drop down get all messed up - it looks like they are overwriting each other. I am running on 64 bit windows 7 with deve studio 2008. I didn't have this problem on windows xp. Have reduced the code to a simple example which reproduces the problem.
public class ODComboBox : ComboBox
{
protected override void OnDrawItem(
DrawItemEventArgs e)
{
if (e.Index == -1) {
e.DrawBackground();
e.DrawFocusRectangle();
return;
}
string text = Items[e.Index].ToString();
e.Graphics.SetClip(e.Bounds);
e.DrawBackground();
e.Graphics.DrawString(text, Font, new SolidBrush(ForeColor), e.Bounds);
e.DrawFocusRectangle();
}
}
The draw mode of the comob is set to OwnerDrawFixed and here is the OnLoad method from the host from.
private void Form1_Load(object sender, EventArgs e)
{
for (int i = 0; i < 50; ++i) {
cobmob1.Items.Add("AAAAAAAAAAAAAAAAAAAAAAAA");
cobmob1.Items.Add("BBBBBBBBBBBBBBBBBBBBBBBB");
}
cobmob1.DropDownWidth = 500;
}
