MFC:VS 2010 类向导不显示对话框的类名称
我目前正在学习MFC。在 VS 2010 对话框编辑器上,我在对话框上创建了一个列表框和几个按钮。然后我使用类向导添加了一个列表框成员变量。
现在,当我对按钮再次尝试相同的操作时,我发现类向导是空的。它仅显示项目名称。它没有显示任何其他内容。
有人可以帮忙吗?
Iam learning MFC currently. On VS 2010 dialog editor, i created a listbox and few buttons on a dialog. Then i added a listbox member variable using the class wizard.
Now when i try the same thing again for a button, i find the class wizard is empty. It just shows the project name. It doesn't show anything else.
Can someone help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我使用命名空间封闭了对话框类。这导致了问题。
I enclosed the dialog class using a namespace. That caused the problem.
类向导似乎不支持命名空间内的类。
有一个解决方法,但它涉及预处理器宏。
cpp.hint 仅由类向导使用,而不是编译器使用。上述修复意味着类向导看不到命名空间中的类,但编译器可以看到。因此,类向导可以正常工作,并且您的类仍然位于与以前相同的命名空间中。
请参阅 https://connect.microsoft.com/VisualStudio/feedback/details/543019/class-wizard-and-class-view-does-not-detect-namespaces-changes-in-configurations。
Classes inside namespaces are not supported by Class Wizard it seems.
There is a workaround but it involves preprocessor macros.
cpp.hint is only used by class wizard not the compiler. The above fix means class wizard doesn't see your classes within the namespace but the compiler does. So class wizard works and your classes are still within the same namespaces as before.
See https://connect.microsoft.com/VisualStudio/feedback/details/543019/class-wizard-and-class-view-does-not-detect-namespaces-changes-in-configurations.
我自己还没有尝试过,但是如果你使用的是VS2010,也许这个扩展可以用(声称支持命名空间):
https://visualstudiogallery.msdn.microsoft.com/e35dfd63-8023-450d-be21-d58be27def61
I have not tried it myself yet, but if you are using VS2010, perhaps this extension can be of use (claiming to support namespaces):
https://visualstudiogallery.msdn.microsoft.com/e35dfd63-8023-450d-be21-d58be27def61