C#动态生成的Label设置属性

2025-01-24 22:43:35
推荐回答(2个)
回答1:

this.label1 = new System.Windows.Forms.Label();//NEW一个对象
this.label1.Location = new System.Drawing.Point(40, 352);//位置
this.label1.Name = "label1";//变量名
this.label1.TabIndex = 2;//获取或设置控件的容器的控件的Tab键顺序
this.label1.Text = "-1";//显示-1
this.label1.Visible = false;//不可见

回答2:

this.label1.Font = new System.Drawing.Font("华文彩云", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));你算是问对人了,我刚好在学C#,快学完了.在做毕业项目了.
其实挺简单的,你只要在属性里面生成下,然后去看原代码,COPY就可以了