C#从另一个类添加控件

时间:2013-05-02 12:46:35

标签: c# winforms class inheritance controls

我想从另一个继承表单类的类动态地向表单添加表单控件。一切正常,但它不会在运行时添加控件。

以下是我的示例代码:

namespace Namespace1
{
 public partial class Form1 : Form
   {
    .....

  }

 .......
 }// end of Namespace1

namespace Namespace2
{
public class1:Form1
{
public Button button = new Button();

public void method1()
  {
   button1.Name="button1";
  //flowlayoutcontrol1 is a public control on Form1
  flowlayoutcontrol1.Controls.Add(button1);
  }

} }

0 个答案:

没有答案