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
3 answers

WinJS Flyout keeps closing - controls cannot be clicked

I'm writing a Win Universal App (JS) and have implemented a Flyout. The Flyout is accessed via a button in a toolbar. Code for flyout -
1
vote
0 answers

Display loading icon when loading another form

I'm using MetroFramework to write a C# Metro WinForm project, and I'm having issues getting a loading icon (class metroProgressSpinner) to display when creating a new form. The following screenshot is a code snippet: The following gif shows the…
Sait
  • 47
  • 7
1
vote
1 answer

C# WinForms MetroUI ComboBox set SelectedIndex not working

I'm using WinForms MetroUI controls https://github.com/peters/winforms-modernui. Metro ComboBox control has issue with selecting combo box item using: comboBox.selectedIndex = 0; If I switch to old Form ComboBox control, above code work. Does…
NavCore
  • 1,115
  • 3
  • 10
  • 25
1
vote
1 answer

How to open PDF's with only Microsoft Reader app not with Microsoft Edge?

I am developing a windows store app using C#. In my app I need to open some PDF's and for that previously I was opening PDF with the system's default PDF opener. My code was working fine in windows 8.1 because client ask me to open these PDF's on…
1
vote
0 answers

How to change PC/laptop Screen brightness programmatically from windows store app?

I am trying to change some computer settings from my metro app. Please tell a way to control Screen brightness programmatically from metro/windows store app. I am developing my metro app using C#.
1
vote
1 answer

Modify last (or individual) item inside GridView

I have a GridView which is populated (through binding) by an ObservableCollection. How do I set it up so that every time a new item is added to the ObservableCollection, the last item in the GridView always has a button on top of it ? This is the…
1
vote
1 answer

Windows 10 Search API

I'd like users to be able to type a product id into the Windows 10 search box and have it show a list of products from a network database, then when they click on that product id, have it load a web page from our intranet. Is this possible? Would…
FilthySlider
  • 115
  • 10
1
vote
0 answers

WinJS.UI.SplitView set closedDisplayMode to none for a small screen/mobile device

I'm trying to change the closedDisplayMode value of a WinJS.UI.SplitView. I would like to set it to none when the universal app i'm working on is used on a small screen/mobile device. Obviously I can use MediaQueries to handle most presentation…
Chris Spittles
  • 15,023
  • 10
  • 61
  • 85
1
vote
1 answer

Set the color of a control in C++, Windows Store Metro App

I'm making a Windows Store Metro application and I have some issues.. I want to set the color of a control in C++ but I can't figure out how to do it.. I have the following code now: txt1->Background = ?
1
vote
3 answers

How to launch a Windows8 Metro App by C# form application?

Now I want to launch a Windows 8 Metro App by a C# form application, but it's hard for me to find the right way... I had tried these ways(I had installed the Metro App and registered a protocol): 1. var success = await…
CzeRen
  • 11
  • 4
1
vote
1 answer

Windows Store App running .msi installer

I am developing a windows store app which downloads a MSI file from a URL. I want to automatically run the MSI installer from C# code. first problem is the windows smart screen - the MSI is not signed event when smart screen is disabled var…
ciulany
  • 13
  • 2
1
vote
0 answers

Bug in UI Automation with Metro apps when text element scrolled beyond first line

I am trying to extract the text under the mouse using the following code private static async Task getText(double x, double y) { try { var location = new System.Windows.Point(x, y); AutomationElement element =…
tofutim
  • 22,664
  • 20
  • 87
  • 148
1
vote
0 answers

Distribute an app in windows 8.1

How can I distribute an app in windows 8.1 or higher as a limited extent inside a company? I made the next steps but I failed: • I created an app and uploaded the appxupload arquives • I defined the visibility Hide this app and stop selling • I…
1
vote
1 answer

Get Content from Multiple ListBoxItems and Cast to String

Have spent a good while Googling and searching stackoverflow but either the solutions aren't quite what I'm looking for, or I'm not implementing quite right. Don't think it's a big deal so hopefully someone can provide a solution (bit of a SO noob…
newton
  • 23
  • 5
1
vote
1 answer

Run Windows Store Application from Desktop

I am trying to launch a Windows Store application from a C# Windows Forms App on Windows 10. I tried some approaches what (probably?) works on Windows 8 but don't work on 10. I tried as follows: Process.Start("explorer",…