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#程序设计有所帮助。
上一篇: PS中简单制作炫酷的动感图像