I have an ownerdrawn ListView that "smears" when I scroll. It only affects the last displayed item as it moves into the visible are of the list...
It looks like:
Blah
Blah
Blah
...have all been drawn on top of each other 1 pixel apart. The code in the DrawItem event is of the form
Rectangle rect = new Rectangle(e.Bounds.X + mIconSize.Width,
e.Bounds.Y, e.Bounds.Width, e.Bounds.Height);
e.Graphics.DrawString(episode.ToString(), this.Font, mBlackBrush, rect);
I'm completely stumped. Any ideas gratefully appreciated! Dave