Is there any way to write a WinRt (Metro) app that will also work on Windows 7 and Vista?

The best answer is that you do not want the same application to run on Windows 7 and Windows 8 Metro style. The UI that works best for mouse and keyboards (windows 7) will not work well for a touch-first presentation and visa versa. It is important to re-imagine the UI for the two different worlds That said, you have 2 options if you want to share a lot of the code: 1) Write it largely in JavaScript/HTML5.

This will let you re-use many of the assets (especially the business logic parts). 2) Write it in (desktop) Silverlight. The Silverlight XAML is closest to Windows XAML.

WPF is further away and will require more re-work later In either case, you should look at and follow the principles used when writing cross-platform code. Understand the platform dependencies and isolate them behind indirection boundaries. You want to localize all of the code that will have to change.

For instance, you don't want calls to the . Net System.IO. File APIs which you know will have to change to Windows.System.

Storage calls being scattered throughout your code. Instead, you want it localized in one function that can be modified later.

The best answer is that you do not want the same application to run on Windows 7 and Windows 8 Metro style. The UI that works best for mouse and keyboards (windows 7) will not work well for a touch-first presentation and visa versa. It is important to re-imagine the UI for the two different worlds.

That said, you have 2 options if you want to share a lot of the code: 1) Write it largely in JavaScript/HTML5. This will let you re-use many of the assets (especially the business logic parts). 2) Write it in (desktop) Silverlight.

The Silverlight XAML is closest to Windows XAML. WPF is further away and will require more re-work later. In either case, you should look at and follow the principles used when writing cross-platform code.

Understand the platform dependencies and isolate them behind indirection boundaries. You want to localize all of the code that will have to change. For instance, you don't want calls to the .

Net System.IO. File APIs which you know will have to change to Windows.System. Storage calls being scattered throughout your code.

Instead, you want it localized in one function that can be modified later.

3 I would emphasize that separating as much logic as possible into a cross-platform library is important. This way you can add support for different front-ends (Metro, traditional Win32 UI, etc. ) in the future while sharing most of the code. – James Johnston Sep 26 at 19:18 If only someone would tell Microsoft this.

They seem to be pushing the same Start Screen interface on both types of users. :-) – Leo Davidson Nov 24 at 10:08.

The only way I can think of is to implement your application in HTML5/CSS3/JS, and avoid using WinRT APIs inasmuch as possible - this may be feasible depending on what, exactly, your app needs to do (e.g. Portable 2D graphics is easy with HTML5 canvas). Then, for Win8, you'll package this as Metro web app. For Win7 and below, you write a simple app that embeds your browser of choice (not IE9, since it doesn't work on XP - so Firefox or Chrome) with all chrome hidden, and loads your HTML5 app inside that embedded browser.

It is unlikely that we'll see Microsoft push the Metro-style application framework back to past releases due to the level of re-architecting that went into Windows 8. I agree with Zac on this point. It appears Microsoft is definitely pushing both the technology and usability forward with the introduction of Windows 8 (and Windows Runtime).

The Metro UI is a different UI paradigm. If your using the current Win32 controls (which includes WPF controls), your application will look really dated in Metro. The only way to fix that is to re-implement the UI (your View classes in an MVVM design) using Metro controls.

However, C# and majority of the . NET APIs are first class citizens in this new environment. The rest of your application should be fine.As you already have what I assume a rather large application your best solution would be separate your view from your model-viewmodel.

Then you can continue to develop both Windows 8 Metro full-screen touch-friendly awesome interfaces and the "classic" window interface (what we have done for the last x number of years). With good separation, design, and an excellent source control solution (i.e. Perforce) you will able to share a lot of the code base.

In addition to the answers given to your recent question on Windows Runtime Bill Wagner (one of the many C# bloggers that I follow) has posted summary on WinRT and managed languages conference sessions; it is an good read and recommended if you have a few minutes. One of the things that his summary clarified (in the FAQ at the end) was that the future of . NET as the branding for the framework we use is going to be replaced with Windows Runtime.

Another piece from Bill's blog post: Some of the . NET APIs are changing for WinRT. I don’t have an exhaustive list, and I’m not sure there is one yet.

Other APIs are not exposed via WinRT. (They are still available as . Net APIs, just not as Metro / WinRT APIs.

).

As others have noted, you would not want to have exactly the same application working in Win8 Metro and Win7 / Vista Desktop. If you structure your application properly, using a suitabel design pattern, it is possible to share quite a bit of code between the various version that you would require. For the Win8 version, you will be using WinRT, for Win7 / Vista you have a choice of Silverlight or WPF.

I have published a couple of articles that demonsrate how this can be done, they include quite a bit of code as well: XAMLFinance – A Cross-platform WPF, Silverlight & WP7 Application - while this article does not cover Win8, it does share code from WPF to Windows Phone 7, which is a very similar problem. TweetSearch – A Cross platform Metro UI WinRT and Silverlight Application - this article shows how to use the same techniques to share code between WinRT and Silverlight.

It is unlikely that we'll see Microsoft push the Metro-style application framework back to past releases due to the level of re-architecting that went into Windows 8. Like Pavel said, if you kept your application from using as much of the WinRT libraries as possible, it is possible but then again, you're now building a regular web app.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions