从最小化状态恢复后表单具有最小尺寸

发布于 2024-10-19 02:17:36 字数 269 浏览 2 评论 0原文

我将 ClientSize 添加到“属性”窗口中的“应用程序设置”和“数据绑定”中,以便在关闭表单后节省表单的大小。这奏效了。但是当我最小化表单然后将其激活回来时,它具有最小尺寸。这是一个错误还是我做错了什么

  1. 创建新项目(WindowForm应用程序)
  2. 打开属性窗口表单Form1
  3. 在应用程序设置中选择PropertyBinding
  4. 为位置和ClientSize添加绑定
  5. 运行
  6. 最大化然后恢复

I Added ClientSize to Application Settings and DataBindings in Properties window, in order to save size of the form after it was closed. And that worked. But when I minimize form and then activate it back, it has minimum size . Is it a bug or I'm doing something wrong

  1. Create New Project (WindowForm Application)
  2. Open Properties Window form Form1
  3. In Application Settings choose PropertyBinding
  4. Add Binding for Location and ClientSize
  5. Run
  6. Maximize and then Restore

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

沉溺在你眼里的海 2024-10-26 02:17:36

我在此主题中找到了答案。因此,为了节省大小和位置而不产生副作用,需要删除绑定并手动保存应用程序设置

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;
}

I found answer in this topic. So to save size and location without side effects , need to remove binding and save application settings by hand

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;
}
滥情空心 2024-10-26 02:17:36

窗体、控件和子控件之间的停靠、填充和自动调整大小的不良组合可能会产生这种效果。

Bad combinations of docking, filling and autosize between the form, controls and sub-controls can have that effect.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文