C
Chris G
I used all of these in the constructor:
SetStyle(ControlStyles.DoubleBuffer,true);
SetStyle(ControlStyles.AllPaintingInWmPaint,true);
SetStyle(ControlStyles.UserPaint,true);
with everything else the same (for groupBox), and it worked fine ( and
flicker free =) )
It might be that most of the painting for the ListView actually gets
done by OnDrawItem? Try overriding that.
-cg
SetStyle(ControlStyles.DoubleBuffer,true);
SetStyle(ControlStyles.AllPaintingInWmPaint,true);
SetStyle(ControlStyles.UserPaint,true);
with everything else the same (for groupBox), and it worked fine ( and
flicker free =) )
It might be that most of the painting for the ListView actually gets
done by OnDrawItem? Try overriding that.
-cg