// 每点击一次按钮,窗体的宽度和高度减小10 个像素
private void button1_Click(object sender, EventArgs e)
{
this.Width = this.Width - 10;
this.Height = this.Height - 10;
}
你丢个按钮去窗体上,在按钮单击事件里写:
private void button1_Click(object sender, EventArgs e)
{
this.Width = 100; //宽度
this.Height = 100; //高度
}
//this就代表这个窗体对象
this.Width
this.Height
this.left //左边框距离
this.right
this.top
this.buttom
就是很想自己知道的事情
用this.后面有很多的属性,高度,宽度,左边距,右边距 ……………… 都有
自己找下就知道了