从最小化状态恢复后,表格具有最小尺寸
我在“属性”窗口中将ClientSize添加到“应用程序设置”和“数据绑定”中,以便在关闭表单后节省表单的大小。 这工作。 但是,当我最小化窗体并将其激活时,它的大小最小。 这是一个错误,或者我做错了什么
我在这个主题中找到了答案。 所以为了节省大小和位置而没有副作用,需要手动删除绑定并保存应用程序设置
private void Form1_FormClosing(object sender, FormClosingEventArgs e)
{
Properties.Settings.Default.Size = this.Size;
Properties.Settings.Default.Location = this.Location;
Properties.Settings.Default.Save();
}
private void Form1_Load(object sender, EventArgs e)
{
this.Size = Properties.Settings.Default.Size;
this.Location = Properties.Settings.Default.Location;
}
表单,控件和子控件之间的停靠,填充和自动调整的不良组合可能会产生这种效果。
链接地址: http://www.djcxy.com/p/4971.html上一篇: Form has minimum size after restoring from minimize state
下一篇: Using Python, how do I tell if a rectangle and a shape overlap?