Winforms – In TableLayoutPanel if Dock = Fill and AutoSize = true then last column/row occupy all remaining space

winforms

In TableLayoutPanel if we set AutoSize = true and Dock = fill
then last column/row will occupy all remaining space.
How to set it to required height (row) and width (column)?

Best Answer

I just added an additional last row and set its size to Absolute and 0 pixel. This worked for me.

Related Topic