C# 没有 mdi 父级的级联表单?

发布于 2024-10-30 22:37:16 字数 97 浏览 0 评论 0原文

我一直在用 C# 开发一个项目,其中一部分需要打开一个窗口的多个实例。有没有简单的方法来级联表单的实例?我假设我必须手动处理所需的数学。我只是无法理解它,任何评论或建议将不胜感激。

I have been working on a project in C#, a portion of it requires multiple instances of a window to open. Is there any easy way to cascade the instances of the form? I'm assuming I'd have to deal with the math required manually. I just cannot wrap my head around it, any comments or suggestions would be greatly appreciated.

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

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

发布评论

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

评论(1

人间不值得 2024-11-06 22:37:16

如果我理解正确的话,您希望表单以级联效果出现在屏幕上:

Cascade

如果是这样,在使用 WinForms 时您可以通过确保 StartPosition属性设置为 FormStartPosition.WindowsDefaultLocation (默认情况下)。

如果您使用的是 WPF,则需要设置 <以类似的方式将 code>WindowStartupLocation 属性设置为 WindowStartupLocation.Manual,并且不为窗口设置特定位置。

这使得 Windows 在窗体显示时定位窗体,这是通过使用图中所示的级联效果来实现的。

If I understand you correctly, you want the forms to appear on screen in a cascade effect:

Cascade

If so, when using WinForms you can do this by ensuring that the StartPosition property of each form is set to FormStartPosition.WindowsDefaultLocation (which it is by default).

If you are using WPF, you need to set the WindowStartupLocation property to WindowStartupLocation.Manual in a similar manner and not set a specific location for the window.

This leaves Windows to position the form when it displays, which it does by using the cascading effect shown in the picture.

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