开发者

Visually designing a Visual C++ Windowed Application

开发者 https://www.devze.com 2022-12-24 02:10 出处:网络
If you want a dialog application, MSVC++ 2005 is OK, but when I create a开发者_StackOverflow社区 SDI application I don\'t see any visual layout tools.

If you want a dialog application, MSVC++ 2005 is OK, but when I create a开发者_StackOverflow社区 SDI application I don't see any visual layout tools. is this possible? And are there any better resource editing/mocking tools for MFC apps?


It depends on what you want your view to look like. If it's a view that's similar to a dialog, with control layouts, etc, you would make it a CFormView, and then would use the same dialog editor to lay out your form.

If your view is something with just custom display of the data, then you would use whichever control makes the most sense for your use case. If your data is list-like, you would want to have your view derive from CListView, and so forth.

0

精彩评论

暂无评论...
验证码 换一张
取 消