I am responsible for the user interface of an application written entirely in Visual C ++, using MFC and some third part controls. I would like to use C # (WinForms or even better WPF) to improve the look and feel of the application.
I would like some tips on how to do this. Links, articles, examples ...
Currently, the user interface is isolated in one project, and I do not want to compile the entire module using the CLR. So how do I manage this from an architectural point of view?
I already browsed the Internet for the topic and read the MSDN information. I would like more information ... is it convenient? pros and cons? Have you successfully used this approach in a "large" application? I don't want to compile the whole ui project using the CLR ... can I just use all the .NET code in an isolated project and name it from the ui project? What's the best way to do this?
Thanks in advance.
source
share