I know this question had been asked more than a few times, but so far I haven\'t been able to find a good solution for it.
I\'ve got a panel with other control on it
Original code should be :
protected override CreateParams CreateParams { get { CreateParams cp; cp = base.CreateParams; cp.Style &= 0x7DFFFFFF; //WS_CLIPCHILDREN return cp; } }
This works !!