Another issue I found is that when you override CreateParams property for a form with SplitContainerAdv to set flag WS_EX_COMPOSITED, splitter graphic only appears briefly while moving splitter, then disappears as soon as you stop moving mouse, even when you don't release mouse button. Without this flag, graphic stays in place until you release mouse button.
Code in form to reproduce this:
protected override CreateParams CreateParams
{
get
{
CreateParams cp = base.CreateParams;
cp.ExStyle |= 0x02000000; // Turn on WS_EX_COMPOSITED
return cp;
}
}