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
1
vote
0 answers

Win8 C# - how to effectively draw many figures at once?

I have a big problems with performance, when it comes to draw a lot of figures in Metro app. I've tried: adding Rectangles to Grid (terrible idea, don't do that), using this library: http://writeablebitmapex.codeplex.com/ (original WriteableBitmap…
1
vote
0 answers

Windows 8 app: handling menu calling long time http request

In my App, I have a menu which loads a page making a http request to retrieve data. This http request usually last ~500ms or more. Right now, I use an async method which nicely shows a progressRing during the loading. Problem starts when I start to…
T.Dupuis
  • 95
  • 1
  • 6
1
vote
0 answers

MediaCapture VideoDeviceController properties capabilities randomly supported

On MediaCapture initialization I try to set some properties (Contrast, Zoom, Brightness), but only if supported by the host device. var _captureMgr = new MediaCapture(); await _captureMgr.InitializeAsync(new…
Francesco De Lisi
  • 1,493
  • 8
  • 20
1
vote
1 answer

C# XAML - Windows 8.1 App Multilingual Resources Issue AppBar

I'm making an app for Windows 8.1 using C# and XAML. All the strings are located in a resource file called Resources.resw located in the folder en-GB. I'm loading the string like this using XAML:
TheQuestioner
  • 427
  • 1
  • 7
  • 23
1
vote
2 answers

Terrible lag in HTML5/JavaScript game when animating

My HTML5/JavaScript game (for the windows store) is lagging constantly! I have used barely any resources and I have used gsap for animating the bullets and mines. For example: http://203.81.207.90/default.html in Chrome enabling everything under…
1
vote
1 answer

" FileStream or File don't exist in the current context" trying to access File object in c#

I cannot access the File object in System.IO as mentioned here. A code as simple as this throws an error that FileStream or File don't exist in the current context. FileStream fs = File.Open(filePath, FileMode.Open); I'm trying to write a…
Shashwat Black
  • 992
  • 5
  • 13
  • 24
1
vote
1 answer

How to bind a list in store apps

I have problem with binding list in store apps. public class Category { public Category(int id, string name) { this.ID = id; this.Name = name; } public int ID { get; set; } public string Name { get; set; } } I…
czupikawo
  • 69
  • 1
  • 1
  • 8
1
vote
0 answers

NTLM authentication with BackgroundDownloader in metro app

I want to use BackgroundDownloader class to download files from some external repository which uses NTLM authentication, So i need to pass NTLM authentication header in request from my WindowsStoreApp. I tried using ServerCredential property,…
mayank.karki
  • 750
  • 1
  • 9
  • 34
1
vote
1 answer

Inserting Items in gridview to Left Side also scrolls gridview to Left

In my windows 8 metro app , I am using GridView (horizontal scrolling),according to One of the requirements from client , I need to INSERT items (adding items from top side in observable collection) into this gridview so that GridView's scroll do…
Zee
  • 381
  • 2
  • 11
1
vote
1 answer

C# multiple contentpresenter on a button style (windows 8.1)

I'm trying to display 2 data on a button, using custom style. So, I wrote an XAML code like below, with one 'ContentPresenter.'