如何向TabbedPanel添加许多按钮?

时间:2014-02-26 10:47:40

标签: c# list button tabpage

我正在使用C#开发一个解决方案,我需要在TabbedPanel上添加几个按钮。发生调试器只添加一个甚至一个按钮。

 public void AddDrinkstoTabbedpanel(TabPage tp)
        {

              List<string> drinks = new List<string>();//New list empty
              food foo = new food();//Call food to get drinks
              string []product = foo.name;//string product [] = food.name (drink)
              foreach (string value in product)//(string value in product)//for any "value" in product 
              {

                  Button bt = new Button();
                  bt.Size = new Size(100, 100);
                  drinks.Add(value);

                  tp.Controls.Add(bt);

                  //listofButtons.Add(bt);

              }


        }

我之前使用一些项目定义了一个数组,现在我需要为每个创建的项目添加一个按钮,如何修改上面给出的代码以获得我想要的内容。

1 个答案:

答案 0 :(得分:0)

更改所有按钮的位置。它们正在创建,但处于相同的位置,看起来像一个。