本文介绍了MFC迁移的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 我正在考虑使用C ++ / CLI将我们的MFC应用程序迁移到.NET。我的 问题是从MFC应用程序迁移到ATL到WinForms是否意味着,因为XAML很可能成为未来的方法? 解决方案 国际海事组织,没有。没有必要放弃现有的C ++代码库。 今天将MFC / ATL应用程序移植到VC ++ 2005。您可以使用Winforms今天添加新功能 (视图,表格等),并在时间 到来时使用Avalon。 -cd IMO使用C ++ / CLI将我们的MFC应用程序迁移到.NET是唯一的选择。 考虑到我们目前的存在,被困在本地世界不是一个选择 有.NET版本2,.NET是*用户模式的*接受技术 在MS平台上的开发。鉴于WPF未发布且WinForms不是 未来的API,从头开始重写代码不是 选项。 使用C ++ / CLI和IJW(现在称为Interop 技术)转移到.NET,允许你使用 *来保持你的UI不变实现中间解决方案 *重构并逐步扩展您的应用程序 *使用基类库的所有功能 - 不仅仅是winforms *在MFC对话框和视图中集成WinForms控件 *在MFC对话框和视图中集成Avalon(WPF)控件 我还没有对2005版本的WinForms做过任何事情,但2003年的 版本不适合我的 意见中的大型桌面应用程序。我同意卡尔,我会等到有更多信息。从理论上讲,我确实支持托管代码的范例,但是现在我需要我的 桌面应用程序尽可能快地运行,因为它们很大 编译尽可能小。我可以看到许多使用.NET的东西, 但到目前为止这不是其中之一。 FWIW,微软仍然在编写他们的办公应用程序本机,因此他们也遵循同样的趋势。我不知道他们是否更多或不使用MFC for Office,但这是一个完整的 不同的问题:o) Tom " gator" < GA *** @ discussions.microsoft.com>在留言中写道 news:21 ********************************** @ microsof t.com ... I am thinking of migrating our MFC application to .NET using C++/CLI. Myquestion is does a migration from MFC applications and ATL to WinForms makesense, given that XAML is likely to be the approach of the future? 解决方案 IMO, no. There''s no need to abandon your existing C++ code base. Port your MFC/ATL application to VC++ 2005 today. You can add new features(views, forms, etc) using Winforms today and using Avalon when the timecomes. -cd IMO migrating our MFC application to .NET using C++/CLI is the only option.Being stuck in the native world is not an option given that we currentlyhave version 2 of .NET and .NET is *the* accepted technology for user modedevelopment on MS platforms. Rewriting your code from scratch is not anoption given that WPF is not released and WinForms is not the API of thefuture. Moving to .NET using C++/CLI and IJW (nowadays called "InteropTechnologies"), allows you to* keep your UI as it is instead of implementing an intemediate solution* refactor and extend your application towards .NET step by step* use all features of the base class library - not only winforms* integrate WinForms controls in MFC dialogs and views* integrate Avalon (WPF) controls in MFC dialogs and views 这篇关于MFC迁移的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
11-02 06:36