MFC 对话框应用程序的布局管理器
MFC 应用程序有哪些好的布局管理器?
What are the good layout managers for MFC apps ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
MFC 应用程序有哪些好的布局管理器?
What are the good layout managers for MFC apps ?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(5)
对于 MFC 对话框,请查看 ResizableLib。
For MFC dialogs, have a look at ResizableLib.
我一直在使用 http://www.codeproject.com/KB/dialog/layoutmgr。 aspx 已经很多年了,非常棒。 我还没有找到无法使用此类完成特定布局的情况。 我唯一“怀念”的是视觉布局设计器,但我不认为有一个布局管理器有这样的设计器。
I have been using http://www.codeproject.com/KB/dialog/layoutmgr.aspx for years, it's great. I have yet to find a situation where I can't get a certain layout done with this class. The only thing I 'miss' is a visual layout designer, but I don't think there's a layout manager that has one.
具有锚点属性的 MFC 调整器
http://www.codeproject.com/KB/dialog/WndResizer。 ASPX
MFC resizer with anchor properties
http://www.codeproject.com/KB/dialog/WndResizer.aspx
我发现了这个:http://www.codeproject.com/KB/MFC/UltimateToolbox_Layout。 aspx
我正在寻找同样的东西。 我怀疑微软是否会推出像林间空地这样好的产品。 Windows 开发确实很糟糕。
I found this: http://www.codeproject.com/KB/MFC/UltimateToolbox_Layout.aspx
I'm looking for the same thing. I doubt Microsoft will ever come up with anything as nice as glade. It truly sucks developing for windows.
我已经多次使用过这个 CSizingDialog 类:
http://www.codeproject.com/Articles/11538/Resize-Reposition-the-Controls-in-a-Dialog-at-your
但是,您是否知道在Visual Studio 2015中,您可以使用资源编辑器本身来管理控件大小调整吗? 这个概念很难理解,但是当你正确使用它时,你不需要额外的布局管理器。
I have used this CSizingDialog class several times:
http://www.codeproject.com/Articles/11538/Resize-Reposition-the-Controls-in-a-Dialog-at-your
However, are you aware that in Visual Studio 2015 you can use the resource editor itself to manage control resizing? The concept is tricky to get your head around, but when you use it right you need no additional layout manager.