In TabControl to get rid of the flicker of child windows
When resizing a form, I set the style WS_EX_COMPOSITED
But at the same time, the Splitter stops drawing at dragging.
How can this be solved?
Thank.
/// <summary> /// H_TODO: Избавляюсь от flickering в дочерних окнах. Но при этом возникает проблема с отрисовкой Splitter при перемещении /// </summary> protected override CreateParams CreateParams { get { CreateParams cp = base.CreateParams; cp.ExStyle |= User32.WS_EX_COMPOSITED; return cp; } }