I have a listbox with DrawMode = OwnerDraw.
I have noticed a flicker that is the result of the listbox background being drawn before my custom DrawItem is called. Thus even if I use a single e.Graphics.FillRectangle call it would still cause flicker.
Is there anything that can be done to prevent this flicker, perhaps preventing the listbox backgroundcolor from being drawn?