I'm using a TableLayoutPanel control and in my scenario I have to place two controls inside of one particular cell, is that possible? If so, please elaborate.
Asked
Active
Viewed 2.9k times
37
-
Yeah @zapico, that worked, thx. To the point — instead of Panel I used one more TableLayoutPanel. – Hi-Angel Aug 11 '15 at 15:20
4 Answers
54
You should use a Panel or any other content control inside that cell and then you'll be able to add many controls inside it.

zapico
- 2,396
- 1
- 21
- 45
7
Put a tablelayout panel in the cell and give it two columns and one row. There's your two "cells".

Adam Bruss
- 1,654
- 14
- 18
4
Put a Panel inside the cell and in that panel control you can place as many controls as you want

A1rPun
- 16,287
- 7
- 57
- 90

Alexa Adrian
- 1,778
- 2
- 23
- 38
-1
Try something like this:
1) Create user control and place all control you want on it and than add new control in the cell
2) Put controls in the panel then put panel in the cell

slobodans
- 859
- 1
- 17
- 23
-
2it is too complicating doing this, using a Panel control is easier ;) – Alexa Adrian Feb 18 '13 at 09:02