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
2009-05-01 11:31:56