C# Winforms:
My tableLayout has only one column but it has three rows. I want to be able to show/hide the rows. I did a google search and found this, it works perfect for Hiding the row But what to do for showing it again? setting the height to a hard coded number? Not a good idea ...
tableLayoutPanel1.RowStyles[0].SizeType = SizeType.Absolute;
tableLayoutPanel1.RowStyles[0].Height = 0;
what do you propose to accomplish this?