How to merge two cells in Table Layout

Abhijit Shelar picture Abhijit Shelar · Feb 22, 2012 · Viewed 51.6k times · Source

I have two rows and two columns. I want last column of both cells merge into one. Due to requirement I do not use other design options means two tablelayouts in which first table layout has two rows.I am use Winforms in C#.

|                       |                    |
|                       |                    |
|                       |                    |
|_______________________|                    |
|                       |                    |
|                       |                    |
|                       |                    |

Answer

Boris Zinchenko picture Boris Zinchenko · Mar 31, 2016
  1. Put any control into a cell in form designer
  2. Select the control and view its properties
  3. Find "ColumnSpan" property in "Layout" section
  4. Input desired column span for this value

See picture for illustration:

enter image description here