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
206
votes
11 answers

Is it possible to await an event instead of another async method?

In my C#/XAML metro app, there's a button which kicks off a long-running process. So, as recommended, I'm using async/await to make sure the UI thread doesn't get blocked: private async void Button_Click_1(object sender, RoutedEventArgs e) { …
Max
  • 9,220
  • 10
  • 51
  • 83
127
votes
6 answers

Making WPF applications look Metro-styled, even in Windows 7? (Window Chrome / Theming / Theme)

I like the window chrome on the new Office Suite and Visual Studio: I'm still developing applications for Windows 7 of course, but I'm wondering if there's a quick and easy way (read: WPF style or Windows Library) to emulate this style. I've done…
Daniel
  • 10,864
  • 22
  • 84
  • 115
62
votes
7 answers

Is there a list of "standard" Tile colors for Metro style Windows 8 apps?

When I look at the start screen of my Windows 8 installation I see that bundled apps have colors from some standard(?) palette: IE and Weather have the same color, Store and Xbox Live Games, People and Music, Messaging and Maps, etc. It doesn't look…
Alan Mendelevich
  • 3,591
  • 4
  • 32
  • 50
53
votes
2 answers

Microsoft Visual Studio Change Default Theme

I am finding it really hard to code using the black theme given in the visual studio 2012 IDE. Is there anyway i could get back the older grey theme or is there anyway i could make it look a bit more whiter ?
Sharon Watinsan
  • 9,620
  • 31
  • 96
  • 140
48
votes
10 answers

How to check if file exists in a Windows Store App?

Is there any other way of checking whether a file exists in a Windows Store app? try { var file = await ApplicationData.Current.LocalFolder.GetFileAsync("Test.xml"); //no exception means file exists } catch (FileNotFoundException ex) { …
45
votes
6 answers

Converting a WebClient method to async / await

I have some existing code which I am porting to Windows 8 WinRT. The code fetches data from URL, asynchronously invoking a passed delegate: private void RequestData(string uri, Action action) { var client = new WebClient(); …
ColinE
  • 68,894
  • 15
  • 164
  • 232
44
votes
11 answers

Using jQuery with Windows 8 Metro JavaScript App causes security error

Since it sounded like jQuery was an option for Metro JavaScript apps, I was starting to look forward to Windows 8 dev. I installed Visual Studio 2012 Express RC and started a new project (both empty and grid templates have the same problem). I made…
patridge
  • 26,385
  • 18
  • 89
  • 135
41
votes
4 answers

Does anybody know about the output "Module is optimized and the debugger option 'Just My Code' is Enabled"?

As I said in my previous question I'm migrating my app to windows Metro app. I'm getting an output like this I don't understand this output, if anybody knows then this please say!
Gopinath Perumal
  • 2,258
  • 3
  • 28
  • 41
36
votes
6 answers

Do Windows 8 Store Apps (Metro) run in Windows 7 or XP?

I want to know whether Metro Applications developed using Visual Studio 11 Developer Preview and .Net FrameWork 4.5 can run in Windows 7 or XP. Not the normal Windows Form or WPF, I want to know about the all new Metro Apps. What new things needed…
36
votes
1 answer

How to deploy a Metro App to the Desktop?

I am trying to deploy my C# app to my Windows 8 Metro desktop. I can see the deployed files in the bin folder but when i try to open them i get the following error: This application can only run in the context of an AppContainer. I checked the…
BentOnCoding
  • 27,307
  • 14
  • 64
  • 92
36
votes
4 answers

What is _In_ in C++?

I have searched this up rather a lot, but come up with no helpful results. I am currently trying to program simple DirextX game for Windows 8 Metro, and have come across _In_ rather a lot. I'm just wondering what it is. Also, I have seen a lot of…
Infinity James
  • 4,667
  • 5
  • 23
  • 36
35
votes
2 answers

Berkeley Socket facade for WinRT Networking plausibility?

This is a copy of a post I've sent to the ZeroMQ mailing list. However, the question is raises it not specific to ZeroMQ, but more generally regarding the need for a 'mapping' layer over the networking functionality provided in WinRT to provide a…
34
votes
2 answers

Any alternative for IsSubclassOf or IsAssignableFrom in C# Metro-style

Is there any alternative for IsSubclassOf or IsAssignableFrom in C# Metro-style? I'm trying to make this code run on Metro but can't find alternative. if ((ui.GetType() == type) || (ui.GetType().IsSubclassOf(type))) { return true; }
Michael Sync
  • 4,834
  • 10
  • 40
  • 58
34
votes
4 answers

What are the pros and cons of writing C#/XAML vs. C++/XAML WinRT applications in Windows8?

I'd like to go down the route of porting a WPF/Silverlight component to Windows 8. For a bit of context, the component is a real-time WPF Chart, which uses a mixture of WPF/XAML and bitmap rendering to achieve high performance. I'd like the…
Dr. Andrew Burnett-Thompson
  • 20,980
  • 8
  • 88
  • 178
33
votes
6 answers

Timer in Portable Library

I can't find a timer in portable library / Windows Store. (Targeting .net 4.5 and Windows Store aka Metro) Does any have an idea on how to created some kind of timing event? I need somekind of a stopwatch, so this should refreshn once a second or so
Boas Enkler
  • 12,264
  • 16
  • 69
  • 143
1
2 3
99 100