TableLayoutPanel 动态添加 行 列
//添加行 横排
++this.tbPnl.RowCount;
SRE实战 互联网时代守护先锋,助力企业售后服务体系运筹帷幄!一键直达领取阿里云限量特价优惠。this.tbPnl.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
++this.tbPnl.RowCount;
this.tbPnl.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
++this.tbPnl.RowCount;
this.tbPnl.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
//添加列 竖排
++this.tbPnl.ColumnCount;
this.tbPnl.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
foreach (IPlugin plugin in plugins)
{
Label a = new Label();
a.Text =plugin.Text;
a.Anchor = System.Windows.Forms.AnchorStyles.None;
this.tbPnl.Controls.Add(a, 0, 0);
}
