Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is Windows Metro style app

Could anybody in simple term explain what is Windows Metro style app? What is the purpose and what kind of application we can make using this?

Any link for beginners will be of great use..

Thanks

like image 270
user1025901 Avatar asked Jan 16 '12 04:01

user1025901


People also ask

What are Windows Metro apps?

Metro apps are touch-screen-friendly apps written especially for Microsoft's WinRT programming interfaces. ARM-based Windows RT devices, such as the Surface tablet, will require Metro apps. Devices running Windows 8 are expected to be able to run both Metro apps and Win32 apps.

Does Windows 10 use Metro UI?

People wanted the classic Windows user interface with the Windows start button! 🙂 The Metro UI is integrated with the Windows Start Menu in Windows 10.

What are Windows modern apps?

A Windows Modern app (aka metro, full screen, or Windows Store app) is a new type of application that runs on Windows 8, Windows RT, and Windows 10 PCs and tablets.


3 Answers

"Metro style apps are full screen apps tailored to your users' needs, tailored to the device they run on, tailored for touch interaction, and tailored to the Windows user interface. Windows helps you interact with your users, and your users interact with your app." from MSDN.

All about developing for Windows 8: http://www.buildwindows.com/

When developing Metro apps you can chose from a variety of languages and technologies:

  • HTML + JS + CSS
  • XAML + (C# or VB)
  • XAML + (C++ or C)
like image 139
Tiago Andrade e Silva Avatar answered Jan 01 '23 00:01

Tiago Andrade e Silva


A Metro style app is an app built using HTML5 or XAML+(C#,VB or C++), on Microsoft's new APIs - in short, it's a an app-widget-kinda-thing. Note that this is cross-platform compatible (Windows 8 will support ARM with metro apps) and that standard x86 apps built the "old way" will still continue to work, but are not considered metro apps, nor are they cross-platform compatible. There is also an app store for metro apps.

Due to the lack of system APIs, these apps are fairly limited - think iOS style apps, where it's sandboxed. Metro apps also make use of the cloud more than ever for data storage, and are required to stay open (user should not quit a metro app) unless rebooted or via task manager.

Links: http://channel9.msdn.com/Events/BUILD/BUILD2011/BPS-1004

like image 31
Aditya Vaidyam Avatar answered Jan 01 '23 00:01

Aditya Vaidyam


Metro style application redesigns the Windows user interface (more focus on clean typography and less on UI chrome),have a full screen UI, introduced Flat colored “live tiles”(update user about the application and draw them into application) ,heaving touch-centric style, designed for multitasking(Snapped view, Filled view),can be packaged up and distributed via the “Windows Application store ” and can be deployed in multiple locals and languages.

like image 34
MZahidGhaffar Avatar answered Dec 31 '22 23:12

MZahidGhaffar