C#动态创建button按钮的方法实例详解

时间:2021-08-10 22:24:39

C#动态创建button按钮的方法实例详解

C#编程中经常需要动态创建,本文主要介绍C#动态创建button按钮的方法,涉及C#按钮属性动态设置的相关技巧,以供借鉴参考。具体实现方法如下:

例子:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
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事件");
 
  }
 
 }
 
}
 
//注意:主要是看事件

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

原文链接:http://www.123si.org/c_sharp/108.html