It is necessary to arrange several controls in each cell of the table in order to display information about the book (several labels and one picture box). Tried to use tableLayoutPanel, but it’s not suitable. Only one element can be placed in each cell.

    1 answer 1

    Use TableLayoutPanel, insert Panel into the cells, and insert other components into the Panel.

    • Thank! Already did so) But there was another question. How to dynamically remove all controls from tableLayoutPanel? - Sergey1991
    • Child components of an object of type TableLayoutPanel are stored in the [Controls] [1] collection. There are relevant methods. [1] msdn.microsoft.com/ru-ru/library/… - mals
    • Does not leave, only the elements of one column are deleted. - Sergey1991
    • What about the Clear method? It seems everything should be removed immediately. - mals