Answers for "windows forms tablelayoutpanel scroll"

C#
0

windows forms tablelayoutpanel scroll

// Set the MaximumSize property to a preferred maximum size.
tableLayoutPanel1.MaximumSize = new Size(10, 10); 

// Or dock the TableLayoutPanel in your form.
tableLayoutPanel1.Dock = DockStyle.Fill;

// Set the AutoScroll property of the TableLayoutPanel to true.
tableLayoutPanel1.AutoScroll = true;
Posted by: Guest on January-06-2021

Code answers related to "windows forms tablelayoutpanel scroll"

C# Answers by Framework

Browse Popular Code Answers by Language