在CS文件中生成botton
Label lb = new botton();//new一个botton控件
Point p = new Point(90, 20);//设置控件显示位置
lb.Width = 150;//设置宽度
lb.Height = 50;//设置高度
lb.Text = "botton";//控件内容
lb.Location=p;
this.Controls.Add(lb);//将控件添加到当前窗体
int x=lb.Location.X;//获取控件X坐标
int y = lb.Location.Y;//获取控件X坐标
记得在苏坤老师的C#教程里出现过,具体忘记在哪了 |