views:

150

answers:

1
A: 

You could use a TableLayoutPanel where you give the bottom control ColumnSpan of two.

You can do this in code with

this.tableLayoutPanel.SetColumnSpan(this.button1, 2);

Or use the properties window in the designer.

Mikko Rantanen
I forgot to mention that the splitter needs to be resizable as well.
Vulcan Eager