MFC:VS 2010 类向导不显示对话框的类名称

发布于 2024-10-15 07:45:59 字数 153 浏览 1 评论 0原文

我目前正在学习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 技术交流群。

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

发布评论

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

评论(3

深空失忆 2024-10-22 07:45:59

我使用命名空间封闭了对话框类。这导致了问题。

I enclosed the dialog class using a namespace. That caused the problem.

独行侠 2024-10-22 07:45:59

类向导似乎不支持命名空间内的类。

有一个解决方法,但它涉及预处理器宏。

  • 将命名空间开始和结束的声明替换为定义为执行相同操作的宏。
  • 在与项目文件相同的目录中添加一个名为 cpp.hint 的文件
  • 编辑 cpp.hint 并添加命名空间宏的无操作版本。

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.

  • Replace the declarations that start and end your namespace with macros that are defined to do the same thing.
  • Add a file called cpp.hint in the same directory as your project file
  • Edit the cpp.hint and add do-nothing versions of your namespace 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.

稚气少女 2024-10-22 07:45:59

我自己还没有尝试过,但是如果你使用的是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

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