Use under documented Style from MSDN forum
Add this to form
protected override CreateParams CreateParams
{
get
{ //WS_EX_COMPOSITED XP AND Vista Only
CreateParams cp = base.CreateParams;
cp.ExStyle |= 0x02000000;
return cp;
}
}
No comments:
Post a Comment