rakesh
rakesh

Reputation: 612

compatibility of windows phone 7 applications with windows 8 OS

I am developing a windows phone 7 application and as we know Windows 8 will have metro UI.

will WP7 applications be compatible with windows 8 desktop OS?

Upvotes: 3

Views: 354

Answers (3)

Avijeet
Avijeet

Reputation: 365

Silverlight is not available in windows 8. so you will need to find a counterpart of the silverlight libraries. The good thing is the replacement are available. check this link for porting wp7 application to window 8 http://msdn.microsoft.com/en-us/library/windows/apps/hh465136%28v=VS.85%29.aspx

Upvotes: 0

sharp johnny
sharp johnny

Reputation: 814

If you use MVVM, you could theoretically reuse your complete business logic, all view models, all services. The XAML Ui would have to be reimplemented anyway, as phone and win8 look pretty different.

Upvotes: 2

Daniel A. White
Daniel A. White

Reputation: 190897

Not directly. It is a different stack from WP7's Silverlight. Windows 8 Metro applications use something new called WinRT. You might be able to reuse some code and XAML, provided you design it appropriately.

Upvotes: 3

Related Questions