winform设置tablelayoutpanel的每一列的宽度为60
时间: 2024-05-28 09:09:56 浏览: 215
改变table的列宽度
5星 · 资源好评率100%
可以通过代码设置tablelayoutpanel的每一列的宽度为60,具体代码如下:
this.tableLayoutPanel1.ColumnStyles.Clear();
for (int i = 0; i < this.tableLayoutPanel1.ColumnCount; i++)
{
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 60F));
}
其中,this.tableLayoutPanel1是指需要设置列宽的tablelayoutpanel的名称,60F代表每一列的宽度为60。
阅读全文