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
18
votes
4 answers

What components do I need to build a Metro-style app in WPF?

I have to create an application in WPF that has to be very fancy. I would like to create it with a Metro-like style like WP7 apps. Do you know if there are components that can be used to obtain a similar style?
Cris
  • 12,124
  • 27
  • 92
  • 159
18
votes
2 answers

How do I print WebView content in a Windows Store App?

I have a Metro App and I am attempting to Print the Content of a WebView control. Using the MSDN Print Sample as my source reference. I simply change the XAML in the printableArea as follows:
c0D3l0g1c
  • 3,020
  • 5
  • 33
  • 71
18
votes
2 answers

Getting a Stream from a resource file / content

Is this the correct/only way of getting a Stream from a resource file? Uri uri = new Uri(fullPath); StorageFile storageFile = await Windows.Storage.StorageFile. GetFileFromApplicationUriAsync(uri); …
18
votes
5 answers

How to convert Platform::String to char*?

How do I convert the contents of a Platform::String to be used by functions that expect a char* based string? I'm assuming WinRT provides helper functions for this but I just can't find them. Thanks!
djcouchycouch
  • 12,724
  • 13
  • 69
  • 108
18
votes
5 answers

Programmatically set focus of input box from ListView's ItemInvoked event [Windows 8 Metro HTML5]

Edit: If you have not developed on Windows 8, do not try to answer this question. Do not vote on it. Do not even read it. This is not a web app or website and does not run in a browser. Please stop down-voting content you do not understand. …
JT703
  • 1,311
  • 4
  • 17
  • 41
17
votes
3 answers

Is it possible to await async tasks during a button click?

I have a refresh button in my app that uses some async methods to update the list of items displayed. The problem is that I can't have a return type of Task for the event handler for the button click so I'm left with an async void method. Thus,…
Orch
  • 887
  • 2
  • 8
  • 21
17
votes
3 answers

Check internet connection (availability) in Windows 8

How to check internet connection availability in Windows 8,C# development ? I looked at MSDN but page has been deleted.
mert
  • 920
  • 3
  • 15
  • 24
17
votes
4 answers

What in C++ can make Windows 8 apps not run on ARM?

Building a Windows 8 app, developers can choose HTML/JavaScript, XAML/.Net (C#/VB), and XAML/C++. I want to write my app in XAML/C++. Building applications in the first two choices almost guarantees that your application will execute on both Intel…
Jerry Nixon
  • 31,313
  • 14
  • 117
  • 233
17
votes
1 answer

How to get the absolute position of an element?

Assume something simple like:
MBZ
  • 26,084
  • 47
  • 114
  • 191
17
votes
3 answers

How do I parse a date in a Metro (C++/CX) app?

I have a C++/CX app that is processing some data from a file. It has a string in there representing the culture that was used to save the dates, and it has some dates. I need to convert them from strings to Platform::DateTime. I have heard that …
Kate Gregory
  • 18,808
  • 8
  • 56
  • 85
17
votes
3 answers

Can I use Entity Framework or Linq To SQL with Windows 8 Metro Style apps?

I'm looking for some kind of ORM that can be used with Metro Style apps. I found lots of posts referring to different SQLite implementations that seem to be working (or not, according to other posts) with Metro style apps, but no working sample…
Adrian Grigore
  • 33,034
  • 36
  • 130
  • 210
16
votes
6 answers

Metro style Apps with F#?

In the Build 2011 keynote and demos, they were always talking about C++, C#, Visual Basic and JavaScript. Can't I build Metro style Apps with F#? Or is it safe to say that if it works with C#, then it works with F# as well?
jeha
  • 10,562
  • 5
  • 50
  • 69
16
votes
5 answers

Why does TextBlock trims ending spaces from the text?

Here are my TextBlocks:
Inder Kumar Rathore
  • 39,458
  • 17
  • 135
  • 184
16
votes
1 answer

Deploying a Windows 8 Metro application that uses SQLite

Background We're using System Center 2012 to deploy a Windows 8 Metro-style application to Samsung slates in the field running Windows 8 Enterprise x64. The slates are joined to the domain and have a persistent DirectAccess connection back to it,…
George Durzi
  • 1,632
  • 1
  • 19
  • 31
16
votes
5 answers

Place holder or watermark in TextBox windows 8

I want to show a placeholder text in TextBox when user hasn't typed anything and TextBox is idle. In Andriod it can be done using android:hint="some Text" In iPhone it can be done as textFild.placeholder = "some text"; How can I do it in windows 8…
Inder Kumar Rathore
  • 39,458
  • 17
  • 135
  • 184