欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

C#动态创建button的方法

程序员文章站 2023-11-25 15:38:34
本文实例讲述了c#动态创建button的方法。分享给大家供大家参考。具体实现方法如下: using system; using system.collectio...

本文实例讲述了c#动态创建button的方法。分享给大家供大家参考。具体实现方法如下:

using system;
using system.collections.generic;
using system.componentmodel;
using system.data;
using system.drawing;
using system.linq;
using system.text;
using system.windows.forms;
using system.reflection;
namespace app
{
  public partial class form1 : form
  {
    public form1()
    {
      initializecomponent();
      system.windows.forms.button button = new button();
      button.text = "按钮";
      button.size = new size(100, 30);
      button.location = new point(0, 0);
      button.click += delegate { buttonclick(); };
      this.controls.add(button);
    }
    void buttonclick()
    {
      messagebox.show("点击了click事件");
    }
  }
}
//注意:主要是看事件

希望本文所述对大家的c#程序设计有所帮助。