layout manager for MFC dialog apps

前端 未结 5 791
名媛妹妹
名媛妹妹 2020-12-28 22:22

What are the good layout managers for MFC apps ?

相关标签:
5条回答
  • 2020-12-28 22:29

    For MFC dialogs, have a look at ResizableLib.

    0 讨论(0)
  • 2020-12-28 22:32

    MFC resizer with anchor properties

    http://www.codeproject.com/KB/dialog/WndResizer.aspx

    0 讨论(0)
  • 2020-12-28 22:32

    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.

    0 讨论(0)
  • 2020-12-28 22:33

    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.

    0 讨论(0)
  • 2020-12-28 22:53

    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.

    0 讨论(0)
提交回复
热议问题