C#从另一个类添加控制(C# adding control from another class)

2019-10-29 02:59发布

我想从另外一个类继承了窗体类动态添加窗体控件到我的形式。 一切工作正常,但它并没有在运行时添加控件。

下面是我的示例代码:

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);
  }

}}

文章来源: C# adding control from another class