Questions tagged [microsoft-metro]

Unless you have design questions - you should more likely tag your question as windows-store-apps or windows-runtime or winrt-xaml or winjs. Metro (now "Microsoft Design Language") was an internal code name for a typography-based user interface design language created by Microsoft. It is featured prominently in Windows Phone 7 and Windows 8.

Metro was an internal code name for a typography-based user interface design language created by Microsoft. It is featured prominently in Windows Phone 7 and Windows 8.

On August 3rd, 2012, the "Metro" codename was dropped in favor of the term "Windows 8 Style UI" (see this article on Ars Technica). While "Metro" was said to be a code name, several reports suggest the name was dropped to avoid a potential trademark dispute. No new marketing terminology has been announced to represent the "Windows 8 Style UI" interface.

It was later reported that from about September/October 2012 Microsoft started to replace earlier references to "Metro Design Language" with "Microsoft Design Language" and "Metro Style Apps" with "Windows Store Apps".

Note that "Metro" was mostly the name of the design language originally used in products such as Windows Media Center, Zune, Windows Phone and later in Windows 8 and all other Microsoft properties. Many people familiar with the term even at Microsoft continue using it today when talking about the design style, while seems to be gaining acceptance as the term for what was previously called "Metro Style Apps".

Find our guideline:

Related tags: , , , ,

3874 questions
14
votes
4 answers

Can't access newly created projects in visual studio

I'm creating a new Windows Store app in visual studio. I can't seem to run any app I create though. Even a newly created, blank app gives me the error Error : DEP0700 : Registration of the app failed. error 0x80070005: Opening file from location:…
jjcm
  • 3,677
  • 3
  • 17
  • 14
14
votes
3 answers

How do you get Angular.js to work in a Windows 8 store app?

The app runs but Angular data objects are not recognized. Here is the JavaScript error I am getting: Exception was thrown at line 1059, column 11 in ms-appx://28934b41-4dd2-4414-b9a9- a73c11c1b743/js/angular.js 0x800a139e - JavaScript runtime error:…
Neil Hoff
  • 2,025
  • 4
  • 29
  • 53
14
votes
4 answers

ListBox Background Color (XAML/WinRT/Metro)

I'm trying to change the background color on a "ListBox" on a WinRT page (XAML). When I use the "Background" property, it changes the background how I want it when the control doesn't have the focus. When it gets the focus, it changes to White and…
b.pell
  • 3,873
  • 2
  • 28
  • 39
13
votes
1 answer

Can't use certain colors in Windows 8 HTML5 app

For some reason, when I set the background color in a Windows 8 app to either #0D0D0D or #EEEEEE it displays as #111111 or #F2F2F2 respectively. Is this a bug, or is there a reason for this? It seems fine for random other colors, but for some…
JacobTheDev
  • 17,318
  • 25
  • 95
  • 158
13
votes
2 answers

How to get properties of a class in WinRT

I am writing a Windows 8 application in C# and XAML. I have a class with many properties of the same type that are set in the constructor the same way. Instead of writing and assignment for each of the properties by hand I want to get a list of all…
Igor Kulman
  • 16,211
  • 10
  • 57
  • 118
13
votes
1 answer

Difference between Metro Apps written in HTML/CSS/JS vs XAML/C#

What is the difference between Metro apps written in web-development technologies and ones written in XAML/C#, etc.? Does Microsoft Metro API provide hooks for Javascript, where it's all native for C#? Should they work hand in hand, or is it the…
knownasilya
  • 5,998
  • 4
  • 36
  • 59
13
votes
6 answers

Unhandled exception handler not called for Metro / WinRT UI async void event handler

Consider the following to be extracts from a Windows 8 Metro / WinRT app, which have been reduced to the bare minimum required to show the anomaly: public class App : Application { public App() { UnhandledException += (sender, e) =>…
Sean Fausett
  • 3,710
  • 1
  • 23
  • 17
13
votes
6 answers

BlankPage constructor cannot initialize components

I'm starting learning XAML and I add some code to my BlankPage application. And suddenly a constructor which is initializing a component: public BlankPage() { this.InitializeComponent(); } Stop working. I've got now that…
r9s
  • 227
  • 2
  • 3
  • 13
13
votes
3 answers

Determine metro app is running in Windows 8 tab or Desktop PC

I am developing app with windows 8 metro style. This app has some more feature if it running in desktop pc compared to Tablet. But my problem is how to detect app is running in PC or Tab. I don't want to release 2 build seperately for PC and…
Shashi
  • 2,860
  • 2
  • 34
  • 45
12
votes
2 answers

Calling MVC4 WebAPI methods from C# Metro UI Client using PostAsync, HttpClient & Json

I've created a method using the new WebAPI features in MVC4 and have it running on Azure. The method requires that you post a simple LoginModel object that consists of a Username and Password property. Yes, I plan on securing this further once I get…
INNVTV
  • 3,155
  • 7
  • 37
  • 71
12
votes
4 answers

Store user data in Windows 8 metro app

I am learning how to develop Windows 8 Metro style apps but i couldn't found a way to store user data in SQL Server for example. What could i use or how to store user data.
John Doe
  • 163
  • 1
  • 3
  • 7
12
votes
1 answer

broadFileSystemAccess UWP

I'm trying to use broadFileSystemAccess Capability for UWP apps, But broadFileSystemAccess capability is not listed in my list of capabilites in Package.appxmanifest. My min and max target version is 1803, build 17134, Please help me with this.
Saravana Kumar
  • 341
  • 3
  • 14
12
votes
1 answer

Is GetTypeInfo missing in .NETCore 4.5.1?

I try to read an embedded resource (a font file in a Windows 8.1 Store App) as a Byte stream, but the Problem is the Access to the resource file. I often use typeof(Type).GetTypeInfo.Assembly.GetMainfestResourceStream(...) but the method…
Shounbourgh
  • 258
  • 2
  • 14
12
votes
5 answers

Horizontally center a DIV in page

I'm trying to center a div, which is the Microsoft pubCenter AdControl for Windows 8 apps in HTML5/JavaScript.
ReignOfComputer
  • 747
  • 2
  • 10
  • 30
12
votes
3 answers

PointerPressed: left or right button?

How can I get the type of pressed pointer (left mouse down or right mouse down) in a Metro style C# app? I didn't find a MouseLeftButtonDown event handler in any Metro style UI element. I should use PointerPressed event instead, but I don't know…
kartal
  • 17,436
  • 34
  • 100
  • 145