I know that Metro on both platforms shares a common “look and feel” and that WinRt makes use of XAMLand C# (or VB.NET) like Silverlight does on Windows Phone 7.

However I also know that WinRT is not Silverlight.

Therefore what is the process of creating an app that will work on both a Windows 8 tablet and a Windows 7 (or 7.5) Phone?

How close is WinRt to Silverlight?

link|improve this question

feedback

4 Answers

Despite certain people in Microsoft claiming it will only require changing a couple of lines of code...

The only possible answer to how difficult it will be to port an app is IT DEPENDS!

  • What does the phone app do?
  • How much of that functionality is also available on Win8?
  • What should be done done when it's not possible to do the same thing on Win8?
  • What should additionally be added (if anything) to the Win8 version?
  • What are you going to do with the extra screen real estate that you have on Win8 compared with the phone?
  • Are you using controls or UI elements on one which don't exist on the other?
  • etc, ....

The parrallels are that:

  • both use XAML
  • both can use the same programming language for the code (probably C#)
  • the design of "metro style" apps on Win8 was INSPIRED by Metro (the design language of WP7)

beyond that it will depend on the app.

You can't create an app which will run on both. At the very least you'll need to recompile as the 2 platforms will require targetting different versions of the .net framework.

Update:
Microsoft have provided some early stage guidance on making such a port. It includes some namespace and API mappings.

link|improve this answer
1  
Great answer. You might also find my recent blogpost which details developing a cross platform Silverlight / WinRT application useful: scottlogic.co.uk/blog/colin/2011/09/… – ColinE Sep 16 '11 at 15:59
feedback

Looking at the APIs, and ignoring differences in user experience, I'd say: not difficult but not trivial. Or, another way, more difficult than going from WPF to Silverlight but less difficult than WinForms to WPF.

  • Most of the WP/Silverlight controls (minus pivot/panorama) exist, but they exist a different namespace
  • Other features, like inter-application communication and state management, appear to work completely differently.
link|improve this answer
I think going from WPF to Silverlight is actually more different. There were many more WPF features that were outright unsupported in Silverlight (e.g. extensible markup extensions) - adjusting names of namespaces and methods is a trivial workaround in comparison. – Pavel Minaev Sep 15 '11 at 18:40
Except for all those WP features that aren't supported in WinRT... – Richard Szalay Sep 15 '11 at 19:35
I'm not saying that it doesn't take an effort to port, or that the feature set matches 100%. I'm only saying that the leap from WPF to Silverlight was way bigger in terms of how many missing features you had to find workarounds for. – Pavel Minaev Sep 15 '11 at 19:57
feedback

If you are familiar with the MVVM architecture, you can think about it this way:

  • Both apps can share the same view-model (especially if you made the design choice of not letting the view model know anything about the view)
  • You create a OS-specific view, the one you already have for Windows Phone and a new one for Windows 8 and bind to the same view model.
  • You load the views accordingly, using your choice of compiler directives, app configuration, separated shells/bootstrappers, etc.
  • You may need to introduce some compiler directives to your view-model and other non-view libraries if you use anything which is platform specific.

Following these directives you could have a very platform specific user experience, yet a very unified code base.

I hope this adds valuable information for you in addition to the great answers you already got from the other guys.

link|improve this answer
feedback

You can check out http://msdn.microsoft.com/en-us/library/windows/apps/br229571(v=VS.85).aspx and see if that helps.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.