0

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

这是我的示例代码:

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

} }

4

0 回答 0