C# winform tableLayoutPanel 通过代码插入一行(是插入,不是add)
发布网友
发布时间:2024-10-24 11:06
我来回答
共1个回答
热心网友
时间:2024-10-24 11:58
//假设你第二行的控件叫button1;
tableLayoutPanel1.RowCount=3;
//tableLayoutPanel1.RowStyles.Insert(1, new RowStyle(SizeType.Absolute, 20));
tableLayoutPanel1.SetRow(button1, 2);
热心网友
时间:2024-10-24 11:59
//假设你第二行的控件叫button1;
tableLayoutPanel1.RowCount=3;
//tableLayoutPanel1.RowStyles.Insert(1, new RowStyle(SizeType.Absolute, 20));
tableLayoutPanel1.SetRow(button1, 2);