Transcript

PowerPoint Presentation

Windows App DevelopmentByGenora InfotechLP 3 Kingsmill Business Park Chapel Mill Road Kingston upon Thames KT13GZ UKPh - +442081442655Mail - [email protected] : www.genorainfotech.com

AgendaQ&ADemonstrations

XAML & C#

Windows 8Visual Studio 2013

Visual Studio 2013Visual Studio 2013

Visual Studio is a suite of component-based software development tools and other technologies for building powerful, high-performanceapplications.Visual Studio 2013

XAML & C#What is XAML ?

Used to design GUI

Very similar to XML

Extensively Advanced Markup LanguageXAML Snippet

What is C#?

Next version of C++

Includes LINQ (Language Integrated Query)

Includes delegates, etc.

Runs on .NET 4.5 Framework

Elegant & Type-Safe OOP Language

C# Snippet

using System;

namespace ConsoleApp1{ class Program { static void Main(string[] args) { Console.WriteLine("Hello world"); } }}

Demonstration