Hi,
I have a form, where I want it to be transparent.
I am changing the Opacity and performs "CopyFromScreen".
When I change the opacity, the form flickers.
I have tried all the SetStyle..
SetStyle(
ControlStyles.UserPaint, true);
SetStyle(
ControlStyles.AllPaintingInWmPaint, true);
SetStyle(
ControlStyles.DoubleBuffer, true);
SetStyle(
ControlStyles.OptimizedDoubleBuffer, true);
SetStyle(
ControlStyles.SupportsTransparentBackColor, true);
Thanks in advance
Idit