我有一个表单和一个按钮,我如何切换窗口高度,所以当我第一次点击按钮时,窗口高度会增加166,当我第二次点击按钮时,高度将减少 166。
抱歉这个问题很愚蠢,但我真的很困惑;谢谢
private void button2_Click(object sender, EventArgs e)
{
int FormHeight = this.Height;
int FormHeightBefore = FormHeight;
if (this.Height == FormHeightBefore)
{//toggle off
this.Height = this.Height + 166;
}
else {
//toggle on
this.Height = this.Height - 166;
}
}
我尝试使用上面的代码,但它不起作用,每当我按下按钮时,表单高度仍在增加