我在“属性”窗口中将“ClientSize”添加到“应用程序设置”和“数据绑定”,以便在窗体关闭后保存窗体的大小.这很有效.但是当我最小化形状然后将其激活回来时,它具有最小尺寸.这是一个错误还是我做错了什么
>创建新项目(WindowForm应用程序)
>打开属性窗口Form1
>在“应用程序设置”中,选择PropertyBinding
>为Location和ClientSize添加绑定
>跑
>最大化然后恢复
解决方法
我在
topic中找到了答案.因此,为了节省大小和位置而没有副作用,需要手动删除绑定并保存应用程序设置
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; }