50 likes | 157 Vues
This demo project showcases the development of a simple Windows 8 app using C#. The code demonstrates a basic application structure, including a console output of "Hello.HiOf!" and how to compile the program using Visual Studio 2012. This guide emphasizes the unique aspects of Metro-style applications and provides essential links to developer resources such as MSDN and Code Project. This is a beginner-friendly introduction to the syntax, entry points, and the exciting world of touch-enabled Windows 8 applications.
E N D
ITF11012 .NET Demo
Demo • Hello HiOf • Hello Windows 8 App • Samples / Links
Hello HiOf • Notepadusing System;public class HiOf{ static void Main() { Console.WriteLine(“Hello HiOf!”); Console.ReadLine(); }} • Compilingcsc HelloHiOf.cs • Note • Syntax • Using • Entry point
Hello Windows 8 App • Visual Studio 2012 • Project template • Parts of the IDE • Windows 8 App / Modern UI / Metro style • Fun • Challenging • Touch device a must • Metro takeaways • 8 traits of a Metro App • Developing/Debugging • Style vs. code
Samples / Links • MSDN Developer Samples: Learn Through Code (http://code.msdn.microsoft.com/) • The Code Project (http://www.codeproject.com/KB/cs/) • Windows Store App samples (http://code.msdn.microsoft.com/windowsapps/) • MSDN Library (msdn.microsoft.com) • MSDN Magazine (http://msdn.microsoft.com/nb-no/magazine/default(en-us).aspx) • Windows Store Apps devloper line (http://www.buildwindows.com/)