I have developed windows 8 store app with XAML and c# so can I use the same app in windows phone 8?
|
No, not directly. Windows 8 and Windows Phone 8 do share a bit of the underlying WinRT layer, but they are not interchangeable. There are ways to maximize reuse of your assets - Portable Class Libraries are a primary mechanism for that - but there are differences in the process lifecycle, storage options, notifications, XAML markup, etc. Of course, the device form factors are also different, so it's likely you'd want to modify the UI even if all of your code were 100% reusable. Windows Phone and Windows 8 building together on the Windows Phone Dev Center is a good place to go to learn about the platform differences and how best to use your current code investment. Also, check out How to Leverage your Code across WP8 and Windows 8 from BUILD 2012. |
|||||
|