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

combo screenshot

link|improve this question

72% accept rate
feedback

3 Answers

up vote 0 down vote accepted

I had the same problem, after a video driver update, that was corrected.

link|improve this answer
I downloaded the latest driver from the Nvidia site and this fixed the problem - thanks. – Shane Apr 2 '11 at 5:12
feedback

I'm unable to reproduce the behavior that you described using the above code under Windows Server 2008 R2, 64-bit. The scrolling seems smooth to me, although it's a slightly unusual effect to see the same two items repeated over and over in the list. I very much doubt the cause is something that is present in Windows 7 but doesn't manifest itself in the server variant of the same; they're essentially identical operating systems.

My guess is it's related to your video card drivers and the new display model (WDDM) introduced in Windows Vista. Perhaps some sort of redrawing problem? How old is your video card? Did you upgrade that at the same time you upgraded from Windows XP?

It could also be related to the new Aero theme. Have you tried running your application under the Aero Basic or Classic themes? If you don't want to change your OS theme, try this:

  1. Right-click on your application's .EXE file, and select "Properties" from the drop-down menu.
  2. Open the "Compatibility" tab.
  3. Check the "Disable visual themes" and "Disable desktop composition" boxes.
  4. Click OK, and then run the application again.
link|improve this answer
I think you are on the right track - setting the theme on the machine to Aero basic or Classic solved the problem. The settings on the .exe however had no effect. My machine os quite a recent - its a Dell T3500 precision with an Nvidea display FX580 display card and it came with widows 7 installed. I'm happy to use Aero Basic on my machine (actually think I prefer it) but I need to run my code on machines that I can't control. Any idea how I can make my code safe to run on Aero? Begining to think its a plot to force me to migrate to WPF :-) – Shane Nov 29 '10 at 14:12
@Shane - did you try to draw background manually instead of e.DrawBackground(); – Daniel Mošmondor Nov 29 '10 at 17:43
@Code Gray - I'd like accept your answer but I need to find a solution which allow the code runs on the most default configuration or at least confirm that this is not possible. Any ideas for other things to try or sources of information I can investigate? – Shane Dec 8 '10 at 1:14
@Shane: I actually have to install Windows 7 tonight on a machine, so I was already planning on checking to see if it's behavior is any different. Otherwise, I haven't updated my answer because I honestly don't have any other ideas on what could be causing this. It's very strange that I can't recreate the behavior. Before I try it again, I just want to make sure that you're that you're using the exact code from your original question, and this is all that's required to reproduce the behavior on your machine? – Cody Gray Dec 8 '10 at 5:04
@Shane: So tonight turned into a day or so later, but I can't see any painting issues on a fresh Windows 7 32-bit install, under the Aero theme. I've tried running the app compiled in Debug and Release mode, as well as on comboboxes with the DropDownStyle set to "DropDown" and "DropDownList". I even tried setting the FlatStyle to "Standard" and "System". I really don't know what you're seeing. The scroll looks perfectly smooth to me (aside from the slightly weird effect created by the specific test strings). I'm sorry that I can't reproduce it, because if not I don't know how to fix it. – Cody Gray Dec 11 '10 at 8:22
show 6 more comments
feedback

This is the solution from here: https://connect.microsoft.com/VisualStudio/feedback/details/524617/listbox-ownerdraw-windows-7 put this code in OnDrawItem instead of e.DrawBackground Posted by Mykola Kovalchuk on 1/2/2010 at 9:01 μμ I have found working solution – special double cleaning of background (both lines are required and in exactly this order):

//e.Graphics.FillRectangle(new SolidBrush(e.BackColor), e.Bounds);
e.Graphics.FillRectangle(new SolidBrush(Color.FromArgb(0, e.BackColor.R, e.BackColor.G, e.BackColor.B)), e.Bounds);
e.Graphics.FillRectangle(new SolidBrush(Color.FromArgb(255, e.BackColor.R, e.BackColor.G, e.BackColor.B)), e.Bounds);

I think ListBox in Windows 7 paints itself with transparent colors, and on scrolling it does not clear part to be repainted, which leads to painting artefacts. Also e.BackColor is named color "Window", and its is not equal to generated by FromArgb even if all ARGB components are same.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.