C#中 如何用代码改变窗体的大小

如题
2024-12-02 23:47:58
推荐回答(5个)
回答1:

// 每点击一次按钮,窗体的宽度和高度减小10 个像素
private void button1_Click(object sender, EventArgs e)
{
this.Width = this.Width - 10;
this.Height = this.Height - 10;
}

回答2:

你丢个按钮去窗体上,在按钮单击事件里写:
private void button1_Click(object sender, EventArgs e)
{
this.Width = 100; //宽度
this.Height = 100; //高度
}
//this就代表这个窗体对象

回答3:

this.Width
this.Height
this.left //左边框距离
this.right
this.top
this.buttom

回答4:

就是很想自己知道的事情

回答5:

用this.后面有很多的属性,高度,宽度,左边距,右边距 ……………… 都有

自己找下就知道了