Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How i can place multiple controls in a particullar cell of TableLayoutPanel

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.

like image 963
Dev Kashyap Avatar asked Sep 16 '11 10:09

Dev Kashyap


People also ask

How to add controls to TableLayoutPanel in c#?

You can add controls to a TableLayoutPanel by dragging and dropping control to the TableLayoutPanel. We can add controls to a TableLayoutPanel at run-time by using its Add method. ColumnStyle and RowStyle properties are used to specify number of columns and rows in a TableLayoutPanel.


1 Answers

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.

like image 137
zapico Avatar answered Oct 02 '22 23:10

zapico