我有一個帶按鈕的面板。我的按鈕是動態創建的。我想要4行,每個4個按鈕。但我只得到一行。控制器在面板中環繞
foreach (CategoriesDataSet.CategoriesRow category in DataRepository.Categories.Categories)
{
if (!category.CategoryName.Equals("ROOT"))
{
SimpleButton button = new SimpleButton();
button.Text = category.CategoryName;
button.Tag = category.CategoryId;
button.Size = new Size(82, 70);
if (lastButton != null)
button.Left = lastButton.Right + 1;
lastButton = button;
button.Click += CategoryButtonClick;
categoriesPanel.Controls.Add(button);
}
}
期望的結果:
x x x x
X x x x
x x x x
小錯字在第1行:你的意思是「調整'Left'財產」 ;-) – brgerner 2012-03-12 09:13:19
哼,以及從誰3分鐘打我答案的傢伙!謝謝,糾正它;-) – Treb 2012-03-12 09:16:39
感謝您的迴應,但它不起作用。現在,按鈕垂直放置 – 2012-03-12 09:43:42