Windows App Development
By
Genora Infotech
LP 3 Kingsmill Business Park Chapel Mill Road Kingston upon Thames KT13GZ UK Ph - +442081442655 Mail - contact@genora.co.in Web : www.genorainfotech.com
Agenda
Visual Studio 2013
XAML & C#
Demonstrations
Q&A
Windows 8
Visual Studio 2013
Visual Studio 2013 Visual Studio is a suite of component-based software development tools and other technologies for building powerful, highperformance applications.
Visual Studio 2013
XAML & C#
What is XAML ? Extensively Advanced Markup Language Very similar to XML Used to design GUI
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++ Elegant & Type-Safe OOP Language Runs on .NET 4.5 Framework Includes LINQ (Language Integrated Query) Includes delegates, etc.
C# Snippet using System; namespace ConsoleApp1 { class Program { static void Main(string[] args) { Console.WriteLine("Hello world"); } } }
Demonstrati on