If I add, say, an ultragroupbox to a winform and then, later, add an ultrapicturebox banner control and dock it to the top, docking the ultragroup box as "fill" slides "under" the picture box rather than filling the remaining space. Is there some simple way of changing the order of the controls other than editing the designer.cs file so the desired behavior results?
Try calling BringToFront() on the UltraGroupBox, or alternatively try calling SendToBack() on the UltraPictureBox.
-Matt
I seem to recall there is some simple way to do this in Visual Studio 2008, but can't remember what it was.