How do you go about developing an application?

how to go about developing an application for 3 Windows platforms

  • I want to rewrite an application that will be available on Windows desktop, Windows store, and Windows Phone. Current state: Windows desktop is MFC app. Windows store and Windows Phone are sharing a PCL for backend and network comm. I have to rewrite the whole app so that backend and APIs are added once and reused by 3 platforms. One way I see is to rewrite the desktop app using .Net and reuse the PCL. But WPF .Net desktop apps are slow. Evernote Windows app was a .Net app until version 3, they moved to WTL C++ in 4.0; http://discussion.evernote.com/topic/17294-what-c-ui-framework-was-used-for-evernote-4-windows/ I am confused after reading that thread on Evernote. What other options do I have?

  • Answer:

    Evernote dropping WPF was years ago. Most of the issues they faced were fixed in .NET 4.0. A native MFC app will often be lighter than a WPF app, but you can't really drop WPF altogether just on the assumption that it's slow. Note that the text editor of Visual Studio is entirely based on WPF. That said, your options depend really on what you want. I'd recommend going for sharing the business logic in PCL assemblies, and write the desktop UI in WPF. Another option could be to write your whole application using WinRT, and betting on the fact that the next version of Windows 8 will allow for Windows Store application to execute in windowed mode (as announced a week ago during the Build).

userSeven7s at Stack Overflow Visit the source

Was this solution helpful to you?

Related Q & A:

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.