ok, this line seems to be causing the issue.. if I comment it, it works but note that this always worked until after 1.4.0.12 libs:
internal static bool DrawScrollBarTrack(Control ctl, Graphics g, Rectangle r, bool rightToLeft, ScrollBarTrackState element_state, bool test)
{
g.FillRectangle(new SolidBrush(Colors.Background), new Rectangle(r.X, r.Y, 15, ctl.Height));
return true;
}
what's wrong about this? how to draw the ScrollBarTrack in a different color?