introduction to windows app development

12
Introduction To Windows App Development By Sourav Bhattacharya Microsoft Student Partner MSP 2014/607 [email protected]

Upload: sourav-bhattacharya

Post on 18-Jul-2015

36 views

Category:

Technology


3 download

TRANSCRIPT

Page 1: Introduction to Windows App Development

Introduction To Windows App

Development

By

Sourav Bhattacharya

Microsoft Student Partner

MSP 2014/607

[email protected]

Page 2: Introduction to Windows App Development

Agenda

Windows 8

Page 3: Introduction to Windows App Development

Visual Studio 2013

Page 4: Introduction to Windows App Development

Visual Studio 2013

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

Page 5: Introduction to Windows App Development

Visual Studio 2013

Page 6: Introduction to Windows App Development

XAML & C#

Page 7: Introduction to Windows App Development

What is XAML ?

Used to design GUI

Very similar to XML

Extensively Advanced Markup Language

Page 8: Introduction to Windows App Development

XAML Snippet

<Pagex:Class="App1Intro.MainPage"xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"xmlns:local="using:App1Intro"xmlns:d="http://schemas.microsoft.com/expression/blend/2008"xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"mc:Ignorable="d">

<Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">

</Grid></Page>

Page 9: Introduction to Windows App Development

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

Page 10: Introduction to Windows App Development

C# Snippet

using System;

namespace ConsoleApp1{

class Program{

static void Main(string[] args){

Console.WriteLine("Hello world");}

}}

Page 11: Introduction to Windows App Development

Demonstration

Page 12: Introduction to Windows App Development

Thank You

© 2014 Microsoft Corporation. All rights reserved. Microsoft, Windows, Windows Vista and other product names are or may be registered trademarks and/or trademarks in the U.S. and/or other countries.The information herein is for informational purposes only and represents the current view of Microsoft Corporation as of the date of this presentation. Because Microsoft must respond to changing market conditions, it should not be interpreted to be a commitment on the part of Microsoft, and Microsoft cannot guarantee the accuracy of any information provided after the date of this presentation. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.