I have a Form on which I have a TabControl which in turn contains a GroupBox. I have set the WS_EX_COMPOSITED extended style in the form's overridden CreateParams method in order to reduce flickering during resizes.
The problem is that when I have WS_EX_COMPOSITED enabled, the GroupBox's border is not drawn until I resize the form. I have tried customizing the GroupBox and applying several different styles to try to resolve this but none of the following styles I have tried had any effect:
WS_EX_TRANSPARENTWS_CLIPCHILDRENWS_CLIPSIBLINGS
Does anyone have any ideas on how I can get that border to draw properly from the get go?