C# winform在窗体中动态添加按钮
1 using System; 2 using System.Drawing; 3 using System.Windows.Forms; 4 5 namespace dynbtn 6 { 7 public partial class Form1 : Form 8 { 9 public Form1() 10 { 11 InitializeComponent(); 12 } 13 14 private void Form1_MouseClick(object sender, MouseEventArgs e) 15 { 16 Button bt = new Button() 17 { 18 Text = "动态生成按钮", 19 ForeColor = Color.FromArgb(new Random().Next(0, 255), new Random().Next(0, 255), new Random().Next(0, 255)), 20 AutoSize = true, 21 Location = e.Location 22 }; 23 Controls.Add(bt); 24 } 25 } 26 }
要想进步,必须得努力地要求自己。
严格地完成每天的任务,勇于实践,方能进步。
要有一个明确的目标。