Question-C#窗体中代码添加控件

1             Label SnLable = new Label
2             {
3                 Size = new Size(SnLength, SnLength),
4                 BackColor = Color.Red,
5                 Location = new Point(10, 10),
6                 BorderStyle = BorderStyle.FixedSingle
7             };
8 
9             this.Controls.Add(SnLable);

写完之后不要忘记this.Controls.Add(SnLable);

猜你喜欢

转载自www.cnblogs.com/Luck1996/p/12127468.html
今日推荐