So Microsoft has come out with the biggest UI redesign since Win95, namely, Metro.

I only have a 32-bit box so I am waiting till Friday to download a 32-bit version of VS11, but until then I have a question about Metro app design:

Do the Metro apps have a different overall application design than, say, a standard WinForms application other than UI design?
I know that the UI is completely different, but what about the underlying code?
Will new programming techniques be necessary for Metro apps or will coding (methods, libraries, event handling) be about the same as from earlier versions of the .NET framework?

Thanks!

link|improve this question

feedback

closed as not constructive by Kev Sep 22 '11 at 23:49

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

2 Answers

up vote 4 down vote accepted

The underlying code will also be different from the traditional win32 apps to better serve the design purpose. One big change is that you will be writing in web languages such as JavaScript and CSS, or similarly XAML. You can use .NET framework for the traditional part of Windows 8 but not the Metro part. Same as other Win32 related techniques.

If you don't know XAML or JavaScript but would like to make Metro apps, it's time to learn - not hard at all.

You can check out their Build Conferences for details.

link|improve this answer
that sounds a lot easier than I expected: I started with web design and XML was my first (computer) language :) – Nate Koppenhaver Sep 22 '11 at 19:38
4  
You will not necessarily be writing in Javascript. You CAN use .NET Framework for Metro apps. You can also use native C++. .NET and C++ apps build the UI in XAML, and C++ apps can also build a UI in DirectX (eg for a 3D game) – Kate Gregory Sep 22 '11 at 21:25
@KateGregory You are right. But even the .Net and C++ code in metro apps can be very different from their Win32 siblings, as far as I can see from the keynotes and VS 2011. – Zhipei Sep 23 '11 at 9:02
feedback
  1. There are recommendations on Metro application design and philosophy.
  2. The conceptual model of programming is different. Design is usually created based on some conceptual model. Thus it will change.

But that's a very broad answer. There are many differences between standard Win32 applications today and WinRT Metro applications. Examples include:

  • Metro applications implement Windows Contracts for various features (like communication to other programs, etc.)
  • Async was built deep inside the WinRT (for calls longer than 50 ms)
  • security model has been changed, apps will run in a sandboxed environment
  • not all .NET functionality is available (see also “Windows Tailored” or Metro profile)
  • synchronization to the Cloud becomes much more important
  • users are not supposed to close Metro applications (except using Task Manager or via rebooting), when they loose focus they simply become inactive
link|improve this answer
feedback

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