12
Windows App Development By Genora Infotech LP 3 Kingsmill Business Park Chapel Mill Road Kingston upon Thames KT13GZ UK Ph - +442081442655 Mail - [email protected] Web : www.genorainfotech.com

Mobile apps development companies in india |#Mobileappsdevelopmentcompaniesinindia

Embed Size (px)

Citation preview

Windows App Development

By

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

Agenda

Q&ADemonstrations

XAML & C#

Windows 8

Visual Studio 2013

Visual Studio 2013

Visual Studio 2013

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

XAML & C#

What is XAML ?

Used to design GUI

Very similar to XML

Extensively Advanced Markup Language

XAML Snippet

<Page x: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>

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