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?
Oh, I misunderstood and assumed you were doing this at run-time. There are buttons for this in the toolbar. You can also right-click a control and choose these options from the context menu.
-Matt
I seem to recall there is some simple way to do this in Visual Studio 2008, but can't remember what it was.
Try calling BringToFront() on the UltraGroupBox, or alternatively try calling SendToBack() on the UltraPictureBox.