• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Learning to make Windows metro apps

Rezag3000

Member
Hi,

I recently completed an intro to Java course, and this was my first introduction to programming in general as well.

I'd like to continue to develop my programming skills on my own. I'd ultimately like to be able to create windows metro applications.

I've done a bit of research, and it seems like if I want to make windows metro apps, I need to start by learning C++.

Is this a good path to start on?
 
Last edited:
I was under the understanding that metro apps are written in .net, and the primary language for that platform is C#. Start there, its a reasonable programming language (limited mostly to Microsoft technology) that will allow you to grow your skills fairly well.
 
I was under the understanding that metro apps are written in .net, and the primary language for that platform is C#. Start there, its a reasonable programming language (limited mostly to Microsoft technology) that will allow you to grow your skills fairly well.

Metro apps are actually written against the Windows Runtime, which is a .NET-like sandbox environment. It has some similarities with .NET, and interoperates with certain .NET assemblies, but it's not .NET. As for languages, any .NET language can be used, along with XAML, or customized HTML and javascript.
 
You can actually do Metro Apps in pure HTML 5 and JavaScript. Depending on what you need, this is typically enough.
 
You can actually do Metro Apps in pure HTML 5 and JavaScript. Depending on what you need, this is typically enough.

I understand that there are several different ways of making a metro app, or at least this seems to be what I learned from reading Microsoft's documentation.

The problem is that I am very unfamiliar with ALL of them. I'd like to pick one and get started with that.
 
Back
Top