我想創建一個按鈕動態並將它們添加到表佈局面板的問題是,無論我做什麼我保持垂直滾動條即使我只有一行按鈕。 代碼:爲什麼我有垂直滾動條tablelayoutpanel
private void button2_Click(object sender, EventArgs e)
{
for (int i = 0; i < 50; i++)
{
Button button = new Button();
// button.Location = new Point(20, 30 * i + 10);
button.Click += new EventHandler(ButtonClick);
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));
tableLayoutPanel1.ColumnCount += 1;
tableLayoutPanel1.Controls.Add(button);
}
}
結果:
我想擺脫它的水平一個是確定
在此先感謝
是的,這很好,非常感謝你 – 2012-03-15 16:26:41