基于功能区的 MFC 应用程序可以在 Vista/7 之前的 Windows 上运行吗?
在 VS2010 下构建的具有功能区工具栏的 MFC 应用程序是否可以在功能区设计之前发布的 Windows 版本(例如 XP 或 W2K,而不仅仅是 Vista 或 W7)上运行?
如果不是,可以采取什么措施(如果有的话)让它们发挥作用?
Can MFC applications with Ribbon toolbars built under VS2010 be run on versions of Windows that were released before the ribbon was designed - e.g. XP or W2K, not just Vista or W7?
If no, what (if anything) can be done to make them work?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,它们将在带有 SP3 的 XP 上运行。
但不适用于较旧的系统,因为使用 VS2010 编译的应用程序至少需要 XP SP3 才能运行(C 运行时库的要求)。
Yes, they will run on XP with SP3.
But not for older systems, as applications compiled with VS2010 require at least XP SP3 to run (requirement of the C-Runtime library).
根据 “遇到不正确的参数”运行Windows XP MFC 功能区应用程序 它应该可以工作。问题还说,MFC 库静态链接以在 XP 上工作(我不知道为什么动态版本不应该工作...)
我猜外观可能存在一些差异,但我建议尝试一下,看看你是否能忍受它。
According to "Encountered an improper argument" running a Windows XP MFC Ribbon Application it should work. The question also says, that MFC libraries are statically linked to work on XP (I don't know why the dynamic versions shouldn't work ...)
I'd guess there might be some differences in the appearance, but I suggest to try it out to see if you can live with it.