Development. Wiley Publishing, Inc. 24-HOUR TRAINER. Brian Faucher WILEY

Size: px
Start display at page:

Download "Development. Wiley Publishing, Inc. 24-HOUR TRAINER. Brian Faucher WILEY"

Transcription

1 Development 24-HOUR TRAINER Brian Faucher WILEY Wiley Publishing, Inc.

2 INTRODUCTION xxvii LESSON 1: HELLO, WINDOWS PHONE 7 3 Overview of Windows Phone 7 3 Silverlight Versus XNA 4 Silverlight 4 Microsoft XNA 4 The Windows Phone Marketplace 5 LESSON 2: GETTING AND INSTALLING THE DEVELOPMENT TOOLS 7 Getting the Installation Files 7 Which Files Do You Need? 7 Visual Studio 2010 Express for Windows Phone 8 Expression Blend 8 Windows Phone Emulator 8 Silverlight 4 Tools for Visual Studio XNA Game Studio 8 System Requirements 8 Installing the Developer Tools 9 Windows Phone Developer Tools 9 Expression Blend SDK 9 Visual Studio 2010 Version Compatibility 9 LESSON 3: UNDERSTANDING WINDOWS PHONE 7 ARCHITECTURE 11 Tools 11 Visual Studio 2010 Express for Windows Phone 11 Visual Studio Expression Blend 12 Runtime 12 Architecture Overview 12 Core Components 13 Common Services 13

3 Silverlight 13 XNA 13 Features Supported in Windows Phone 7 14 Class Library Support for Windows Phone 7 14 Microsoft.Devices 14 Microsoft.Devices.Radio 14 Microsoft.Devices.Sensors 14 Microsoft.Phone 14 Microsoft.Phone.Controls 14 Microsoft.Phone.Controls.Primitives 15 Microsoft.Phone.lnfo 15 Microsoft.Phone.Marketplace 15 Microsoft.Phone.Net.Networklnformation 15 Microsoft.Phone.Notification 15 Microsoft.Phone.Reactive 15 Microsoft. Phone.Shell 15 Microsoft. Phone.Tasks 15 System 16 System.Device.Location 16 System.Diagnostics 16 System.Windows.Automation.Peers 16 System.Windows.Controls 16 System.Windows.Media. Imaging 16 System.Windows.Navigation 16 Components in the Silverlight for Windows Phone Toolkit 17 GestureService/GestureListener 17 ContextMenu 17 DatePicker 17 TimePicker 17 ToggleSwitch 17 WrapPanel 17 Important Silverlight Differences 17 Silverlight on Windows Phone 7 vs. Windows 17 Cloud Services 19 Microsoft Push Notification Service 19 Microsoft Location Service 19 Web Services 19 Azure 20 Portal Services 20 Windows Phone Marketplace 20

4 Registration 20 Content Management 20 Sales and Billing 20 Business Intelligence 20 1 SECTION II: LET'S ROLL! LESSON 4: CREATING A NEW PROJECT 23 Which Project Template to Choose? 23 Windows Phone Application 23 Windows Phone Databound Application 24 Windows Phone Class Library 24 Windows Phone Panorama Application 25 Windows Phone Pivot Application 25 Application Settings 25 Getting Additional Templates 26 Adding a Control to the Main XAML Page 27 Adding a Control 27 Setting Control Properties 27 Adding C# Code 28 Add a New Event Handler to a Control in the XAML 28 Adding Code to the Event Handler 29 Try It 29 Lesson Requirements 29 Step-by-Step 29 LESSON 5: BUILDING AND TESTING YOUR APPLICATION 31 Building Your Application 31 Before You Build 31 Build the Application 33 Debugging Your Application 33 Setting Breakpoints 33 Stepping through the Code 34 Using the Phone Emulator 34 Launching the Emulator 35 Emulator Controls 35 Try It 35 Lesson Requirements 36 Step-by-Step 36 xvil

5 LESSON 6: UNDERSTANDING XAML 37 Silverlight Architecture 37 Project Structure 37 MainPage.xamI 37 App.xaml 37 Properties\AppManifest.xaml 38 Properties\Assemblylnfo.cs 39 PropertlesWVMAppManifest.xml 39 The XAML File 40 Understanding App.xaml 40 Layout and Positioning 40 Using the Grid Control 40 Setting the Width and Height of the Grid 41 Using the Stack Panel Control 43 Dynamically Creating XAML at Runtime 44 Try It 45 Lesson Requirements 45 Step-by-Step 45 LESSON 7: WINDOWS PHONE NAVIGATION 49 Working with Databound Projects 49 MainPage.xamI 49 DetailsPage.xaml 50 App.xaml.cs 50 MainViewModel.es 50 ltemviewmodel.es 50 Navigating between Pages 51 Adding Pages to Your Application 52 Working with Pivot Projects 52 MainPage.xamI 52 Working with Panorama Projects 53 Try It 54 Lesson Requirements 54 Step-by-Step 55 LESSON 8: WORKING WITH Ul CONTROLS 57 Understanding the Control Model Built-in Controls 57 60

6 Adding a Control 60 Using the Toolbox to Add Controls 60 Adding Controls Directly to the XAML 60 Adding Controls at Runtime 61 Adding Controls to the Toolbox 61 Setting a Control's Properties 62 Setting Properties at Runtime 62 Using the Properties Pane to Set Properties 63 Setting Properties Directly in the XAML 63 Setting Properties as a Static Resource 63 Binding Data to Controls 66 OneTime Binding Mode 66 OneWay Binding Mode 66 TwoWay Binding Mode 66 Binding Controls in the XAML 66 Binding Controls Programmatically 67 Element-to-Element Binding 67 Try It 68 Lesson Requirements 68 Step-by-Step 68 LESSON 9: MANAGING SCREEN OVERLAYS 71 Software Input Panel (SIP) 71 Specifying Input Scope 71 Specifying Input Scope in XAML 72 Specifying Input Scope Programmatically 73 Application Bar 74 Adding the Application Bar in the XAML 74 Adding the Application Bar Programmatically 75 Try It 76 Lesson Requirements 76 Step-by-Step 76 LESSON 10: SUPPORTING MULTI-TOUCH 79 Multi-touch Behaviors 79 Multi-touch Behavior Properties 80 Multi-touch on the Emulator 81 Try It 81 Lesson Requirements 81 Step-by-Step 81

7 LESSON 11: USING TRANSFORMS AND ANIMATIONS 83 Animations 83 Adding an Animation 83 Creating the Storyboard 84 Creating the Animation 84 Starting the Animation Using an Event 85 Start, Stop, Pause, and Resume 85 Controlling the Begin Time 87 Adding Easing to an Animation 87 Key-Frame Animations 90 Try It 91 Lesson Requirements 91 Step-by-Step 91 LESSON 12: MANAGING USER SETTINGS 97 Adding User Settings to Your Application 97 Adding a Settings Class to the Setting Page 97 Creating a Settings Page 100 Using a Confirmation Button 100 Try It 101 Lesson Requirements 101 Step-by-Step 101 LESSON 13: USING SCREEN ROTATION AND AUTO SIZING 105 Setting Screen Orientation 105 Allowing Auto-Sizing 106 Try It 108 Lesson Requirements 108 Step-by-Step 108 LESSON 14: USING MICROSOFT.PHONE.TASKS 111 Launchers 111 Using Launchers 112 Setting the Properties of the Launcher 112 Calling the Desired Launcher Method 112 Choosers 113

8 Creating an Instance of a Chooser 113 Assigning an Event Delegate 113 Adding an Event Handler 114 Invoking the Desired Chooser Method 114 Try It 114 Lesson Requirements 114 Step-by-Step 115 LESSON 15: ENABLING NETWORKING 119 ASMX Services 119 Adding a Service Reference 119 Calling the Service 121 Accessing the Returned Data 121 RESTful Services 122 Calling a REST Service 122 De-serializing the Returned Stream 122 Windows Azure Service 124 Microsoft Push Notification Service 125 Subscribing to a Notification 125 Registering to Handle Notifications 127 Calling the Notification Service 129 Try It 129 Lesson Requirements 129 Hints 129 Step-by-Step 130 LESSON 16: USING THE WEBBROWSER CONTROL 133 Using the WebBrowser Control 133 Detecting Connection Status 133 Loading a Web Page into Your Application 134 Sending Data between the Web Page and Your Application 134 Sending Data from Application to Web Page 134 Sending Data from Web Page to Application 135 Try It 136 Lesson Requirements 136 Step-by-Step 136 xxi

9 LESSON 17: UNDERSTANDING ISOLATED STORAGE 141 Understanding Isolated Storage 141 Working with Isolated Storage 142 Using Isolated Storage Settings 142 Working with Files and Folders 143 Creating Files and Folders 143 Writing to Files 143 Reading from Files 143 Handling Exceptions 144 Try It 145 Lesson Requirements 145 Step-by-Step 145 LESSON 18: WORKING WITH DATA 151 Reading from an XML file 151 Adding the XML File 151 Copying the XML File to Isolated Storage 152 Adding a Container Class to Hold the Data 153 Parsing the XML File 154 Binding the XML to a Listbox 154 Try It 155 Lesson Requirements 155 Step-by-Step 155 LESSON 19: PLAYING MUSIC AND VIDEOS 161 Playing Videos 161 Adding and Configuring the MediaElement Control 161 Video Play User Controls 163 Audio Adjustment User Controls 163 Download Status Control 164 Recommended Video Encoding Settings 165 Playing Songs 165 Playing a Song 165 Using the FM Radio 166 Try It 167 Lesson Requirements 167 Step-by-Step 167

10 SECTION VII: ACCESSING SENSOR APIS LESSON 20: USING THE ACCELEROMETER 171 Accessing the Accelerometer Class 171 Determining the Current State of the Sensor 171 Accessing the Device's Accelerometer Sensor 172 Try It 173 Lesson Requirements 173 Step-by-Step 173 LESSON 21: USING GPS 177 Getting Data from the Location Service API 177 Obtaining the Geographic Coordinates for a Location 177 Obtaining the Civic Address for a Location 179 Bing Maps Integration 180 Adding a Map to Your Application 180 Setting the Mode 180 Road Mode 181 Aerial Mode 181 AerialWithLabels 181 Setting the ZoomLevei 182 Setting the CredentialsProvider 182 Loading a Map with Current Location 182 Try It 184 Lesson Requirements 184 Step-by-Step 184 LESSON 22: LOCALIZATION 191 Localization 191 Creating and Adding Resource Files 191 Enabling Localization 192 Try It 194 Lesson Requirements 194 Step-by-Step 194 LESSON 23: PACKAGING AND DEPLOYMENT 197 Packaging and Deployment 197 Understanding the.xap File 197 xxiii

11 Deploying to a Phone for Testing 200 Setting Up a Trial Version 205 Allowing a Trial Version 205 Adding a "Buy Now" Option 206 Windows Phone Marketplace 206 Overview of the Marketplace Process 206 Setting Up an Account 207 Publishing to the Marketplace Upload the Application Provide the Application Description Upload the Artwork Set the Application Pricing Submit the Application 211 Try It 212 Lesson Requirements 212 Step-by-Step 212 LESSON 24: GENERATING AD REVENUE 215 Adding Advertising to Your Application Create a pubcenter Account Register Your Application Create an Ad Unit with the adcenter Download and Install the SDK Add an Ad Unit to your Application Try It Lesson Requirements Step-by-Step SECTION IX: SECURITY AND PERFORMArJCE LESSON 25: SECURITY 227 Securing Your Application 227 Using the Available Cryptographic Algorithms 227 AES 227 SHA1 and SHA HMAC 231 Reducing the Attack Surface by Limiting Application Capabilities 232 Try It 233 Lesson Requirements 233 Step-by-Step 233

12 LESSON 26: OPTIMIZING PERFORMANCE 239 Starting Up Your Application 239 Using a Splash Screen 239 Minimizing the Constructor 240 Breaking Up Your Application 241 Using the PerformanceProgressBar 241 Managing Web Service Requests 241 Hiding Controls 242 Opacity Property and Caching 242 The Visibility Property 242 Optimizing Image Use 242 Using JPG Versus PNG Images 242 Limiting Image Size 243 Images or XAML? 243 Understanding Threading 243 The Ul Thread 243 The Composition Thread 244 Animations in Threads 244 Background Threads 244 APPENDIX A: WHAT'S ON THE DVD? 245 System Requirements 245 Using the DVD 245 What's on the DVD 246 Troubleshooting 246 Customer Care 246 INDEX 247 XXV

Pro Windows Phone 7. Development. Rob Cameron

Pro Windows Phone 7. Development. Rob Cameron Pro Windows Phone 7 Development Rob Cameron Contents Contents at a Glance About the Author About the Technical Reviewer Acknowledgments. Introduction iv xii xiii xiv xv Chapter 1: Introduction to Windows

More information

Development. Wiley Publishing, Inc. BUILDING APPLICATIONS AND GAMES USING. Christopher Fairbairn VISUAL STUDIO, SILVERLIGHT, AND XNA.

Development. Wiley Publishing, Inc. BUILDING APPLICATIONS AND GAMES USING. Christopher Fairbairn VISUAL STUDIO, SILVERLIGHT, AND XNA. Development BUILDING APPLICATIONS AND GAMES USING VISUAL STUDIO, SILVERLIGHT, AND XNA Nick Randolph Christopher Fairbairn WILEY Wiley Publishing, Inc. INTRODUCTION xxv CHAPTER 1: TAKING THE METRO WITH

More information

How To Get Started With Windows Phone

How To Get Started With Windows Phone Windows Phone Developer Guidance Map v2.0 J.D. Meier, Principal PM, Microsoft http://blogs.msdn.com/jmeier http://gettingresults.com Introduction Welcome to the Windows Developer Guidance Map! This map

More information

InnerWorkings Catalog

InnerWorkings Catalog InnerWorkings Catalog A complete guide to the InnerWorkings.NET training catalog, with prerequisites, learning goals & technical levels for each Drill. Contents InnerWorkings Catalog... 1 Introduction...

More information

Developer's Cookbook. Building Applications with. The Android. the Android SDK. A Addison-Wesley. James Steele Nelson To

Developer's Cookbook. Building Applications with. The Android. the Android SDK. A Addison-Wesley. James Steele Nelson To The Android Developer's Cookbook Building Applications with the Android SDK James Steele Nelson To A Addison-Wesley Upper Saddle River, NJ Boston «Indianapolis San Francisco New York Toronto Montreal London

More information

Mobile App Design and Development

Mobile App Design and Development Mobile App Design and Development The course includes following topics: Apps Development 101 Introduction to mobile devices and administrative: Mobile devices vs. desktop devices ARM and intel architectures

More information

Essentials of Developing Windows Store Apps Using C# MOC 20484

Essentials of Developing Windows Store Apps Using C# MOC 20484 Essentials of Developing Windows Store Apps Using C# MOC 20484 Course Outline Module 1: Overview of the Windows 8 Platform and Windows Store Apps This module describes the Windows 8 platform and features

More information

Advanced Windows Store App Development Using C#

Advanced Windows Store App Development Using C# 20485C - Version: 1 07 July 2016 Advanced Windows Store App Development Using C# Advanced Windows Store App Development Using C# 20485C - Version: 1 5 days Course Description: This course you will learn

More information

Windows Store App Development

Windows Store App Development Windows Store App Development C# AND XAML PETE BROWN 11 MANNING SHELTER ISLAND contents preface xvii acknowledgments xx about this book xxii about the author xxviii. about the cover illustration xxix If

More information

Mobility Introduction Android. Duration 16 Working days Start Date 1 st Oct 2013

Mobility Introduction Android. Duration 16 Working days Start Date 1 st Oct 2013 Mobility Introduction Android Duration 16 Working days Start Date 1 st Oct 2013 Day 1 1. Introduction to Mobility 1.1. Mobility Paradigm 1.2. Desktop to Mobile 1.3. Evolution of the Mobile 1.4. Smart phone

More information

MS-20485: Advanced Windows Store App Development Using C#

MS-20485: Advanced Windows Store App Development Using C# MS-20485: Advanced Windows Store App Development Using C# Description In this course the students will learn the more advanced programming skills and techniques that they can use to optimize their Windows

More information

INTERMEDIATE ANDROID DEVELOPMENT Course Syllabus

INTERMEDIATE ANDROID DEVELOPMENT Course Syllabus 6111 E. Skelly Drive P. O. Box 477200 Tulsa, OK 74147-7200 INTERMEDIATE ANDROID DEVELOPMENT Course Syllabus Course Number: APD-0248 OHLAP Credit: No OCAS Code: None Course Length: 120 Hours Career Cluster:

More information

Windows Presentation Foundation (WPF)

Windows Presentation Foundation (WPF) 50151 - Version: 4 05 July 2016 Windows Presentation Foundation (WPF) Windows Presentation Foundation (WPF) 50151 - Version: 4 5 days Course Description: This five-day instructor-led course provides students

More information

Application Development

Application Development BEGINNING Android Application Development Wei-Meng Lee WILEY Wiley Publishing, Inc. INTRODUCTION xv CHAPTER 1: GETTING STARTED WITH ANDROID PROGRAMMING 1 What Is Android? 2 Android Versions 2 Features

More information

Course 10978A Introduction to Azure for Developers

Course 10978A Introduction to Azure for Developers Course 10978A Introduction to Azure for Developers Duration: 40 hrs. Overview: About this Course This course offers students the opportunity to take an existing ASP.NET MVC application and expand its functionality

More information

for Java developers Building Mobile Applications Introduction 1 Building Mobile Applications

for Java developers Building Mobile Applications Introduction 1 Building Mobile Applications Introduction Building Mobile Applications for Java developers Information in this document, including URL and other Internet Web site references, is subject to change without notice. Unless otherwise noted,

More information

MS 10978A Introduction to Azure for Developers

MS 10978A Introduction to Azure for Developers MS 10978A Introduction to Azure for Developers Description: Days: 5 Prerequisites: This course offers students the opportunity to learn about Microsoft Azure development by taking an existing ASP.NET MVC

More information

Name of chapter & details

Name of chapter & details Course Title Course Code Modern Application Development CE913 (Elective III) Theory : 03 Course Credit Practical : 01 Tutorial : 00 Course Learning Outcomes Credits : 04 On the completion of the course,

More information

CHAPTER 1: INTRODUCTION TO ANDROID, MOBILE DEVICES, AND THE MARKETPLACE

CHAPTER 1: INTRODUCTION TO ANDROID, MOBILE DEVICES, AND THE MARKETPLACE FOREWORD INTRODUCTION xxiii xxv CHAPTER 1: INTRODUCTION TO ANDROID, MOBILE DEVICES, AND THE MARKETPLACE 1 Product Comparison 2 The.NET Framework 2 Mono 3 Mono for Android 4 Mono for Android Components

More information

Workshop on Android and Applications Development

Workshop on Android and Applications Development Workshop on Android and Applications Development Duration: 2 Days (8 hrs/day) Introduction: With over one billion devices activated, Android is an exciting space to make apps to help you communicate, organize,

More information

Introduction to Tizen SDK 2.0.0 Alpha. Taiho Choi Samsung Electronics

Introduction to Tizen SDK 2.0.0 Alpha. Taiho Choi Samsung Electronics Introduction to Tizen SDK 2.0.0 Alpha Taiho Choi Samsung Electronics Contents Web technologies of Tizen Components of SDK 2.0.0 Alpha Hello world! Debugging apps Summary 1 Web technologies on Tizen Web

More information

Introducing Windows Phone 8 App Development. Lee Stott Microsoft @lee_stott http://www.microsoft.com/uk/faculty http://dev.windowsphone.

Introducing Windows Phone 8 App Development. Lee Stott Microsoft @lee_stott http://www.microsoft.com/uk/faculty http://dev.windowsphone. Introducing Windows Phone 8 App Development Lee Stott Microsoft @lee_stott http://www.microsoft.com/uk/faculty http://dev.windowsphone.com Agenda Introducing Windows Phone 8 New app platform in WP8 Application

More information

Milestone Integration Platform Software Development Kit 2 (MIP SDK 2)

Milestone Integration Platform Software Development Kit 2 (MIP SDK 2) Milestone Integration Platform Software Development Kit 2 (MIP SDK 2) Agenda Introduction to MIP and MIP SDK What s new in MIP SDK 2 Summary Q&A Typical security infrastructure Point-of-sale (POS) Access

More information

Windows Presentation Foundation Tutorial 1

Windows Presentation Foundation Tutorial 1 Windows Presentation Foundation Tutorial 1 PDF: Tutorial: A http://billdotnet.com/wpf.pdf http://billdotnet.com/dotnet_lecture/dotnet_lecture.htm Introduction 1. Start Visual Studio 2008, and select a

More information

[PACKTl. Flash Development for Android Cookbook. Flash, Flex, and AIR. Joseph Labrecque. Over 90 recipes to build exciting Android applications with

[PACKTl. Flash Development for Android Cookbook. Flash, Flex, and AIR. Joseph Labrecque. Over 90 recipes to build exciting Android applications with Flash Development for Android Cookbook Over 90 recipes to build exciting Android applications with Flash, Flex, and AIR Joseph Labrecque [PACKTl III IV I V I J PUBLISHING BIRMINGHAM - MUMBAI Preface 1

More information

ANDROID INTRODUCTION TO ANDROID

ANDROID INTRODUCTION TO ANDROID ANDROID JAVA FUNDAMENTALS FOR ANDROID Introduction History Java Virtual Machine(JVM) JDK(Java Development Kit) JRE(Java Runtime Environment) Classes & Packages Java Basics Data Types Variables, Keywords,

More information

Windows Phone 8 Guide for iphone Application Developers

Windows Phone 8 Guide for iphone Application Developers Windows Phone 8 Guide for iphone Application Developers Microsoft Open Technologies, Inc. 8/1/2013 Rev 1.0 Table of Contents Microsoft Open Technologies, Inc.... 1 Table of Contents...2 About this Development

More information

Android Developer Fundamental 1

Android Developer Fundamental 1 Android Developer Fundamental 1 I. Why Learn Android? Technology for life. Deep interaction with our daily life. Mobile, Simple & Practical. Biggest user base (see statistics) Open Source, Control & Flexibility

More information

10978A: Introduction to Azure for Developers

10978A: Introduction to Azure for Developers 10978A: Introduction to Azure for Developers Course Details Course Code: Duration: Notes: 10978A 5 days This course syllabus should be used to determine whether the course is appropriate for the students,

More information

Extending Microsoft Dynamics CRM 2011

Extending Microsoft Dynamics CRM 2011 Extending Microsoft Dynamics CRM 2011 Course 80295; 3 Days, Instructor-led Course Description: This course offers detailed and interactive information on how to develop extensions for Microsoft Dynamics

More information

COURSE CONTENT. GETTING STARTED Select Android Version Create RUN Configuration Create Your First Android Activity List of basic sample programs

COURSE CONTENT. GETTING STARTED Select Android Version Create RUN Configuration Create Your First Android Activity List of basic sample programs COURSE CONTENT Introduction Brief history of Android Why Android? What benefits does Android have? What is OHA & PHA Why to choose Android? Software architecture of Android Advantages, features and market

More information

Your First Windows Mobile Application. General

Your First Windows Mobile Application. General Your First Windows Mobile Application General Contents Your First Windows Mobile Application...1 General...1 Chapter 1. Tutorial Overview and Design Patterns...3 Tutorial Overview...3 Design Patterns...4

More information

Microsoft 80295 - Extending Microsoft Dynamics CRM 2011

Microsoft 80295 - Extending Microsoft Dynamics CRM 2011 1800 ULEARN (853 276) www.ddls.com.au Microsoft 80295 - Extending Microsoft Dynamics CRM 2011 Length 3 days Price $2629.00 (inc GST) Overview This course offers detailed and interactive information on

More information

«compl*tc IDIOT'S GUIDE. Android App. Development. by Christopher Froehlich ALPHA. A member of Penguin Group (USA) Inc.

«compl*tc IDIOT'S GUIDE. Android App. Development. by Christopher Froehlich ALPHA. A member of Penguin Group (USA) Inc. «compl*tc IDIOT'S GUIDE Android App Development by Christopher Froehlich A ALPHA A member of Penguin Group (USA) Inc. Contents Part 1: Getting Started 1 1 An Open Invitation 3 Starting from Scratch 3 Software

More information

Software Development Interactief Centrum voor gerichte Training en Studie Edisonweg 14c, 1821 BN Alkmaar T: 072 511 12 23

Software Development Interactief Centrum voor gerichte Training en Studie Edisonweg 14c, 1821 BN Alkmaar T: 072 511 12 23 Microsoft SharePoint year SharePoint 2013: Search, Design and 2031 Publishing New SharePoint 2013: Solutions, Applications 2013 and Security New SharePoint 2013: Features, Delivery and 2010 Development

More information

Visual C# 2012 Programming

Visual C# 2012 Programming Visual C# 2012 Programming Karli Watson Jacob Vibe Hammer John D. Reid Morgan Skinner Daniel Kemper Christian Nagel WILEY John Wiley & Sons, Inc. INTRODUCTION xxxi CHAPTER 1: INTRODUCING C# 3 What Is the.net

More information

CHAPTER 1: INTRODUCTION TO SHAREPOINT 2010 1

CHAPTER 1: INTRODUCTION TO SHAREPOINT 2010 1 INTRODUCTION xxv CHAPTER 1: INTRODUCTION TO SHAREPOINT 2010 1 What s New in the SharePoint Platform and Tools 1 Language Integrated Query 2 List Enhancements 2 Business Connectivity Services 2 Silverlight

More information

Using Microsoft Visual Studio 2010. API Reference

Using Microsoft Visual Studio 2010. API Reference 2010 API Reference Published: 2014-02-19 SWD-20140219103929387 Contents 1... 4 Key features of the Visual Studio plug-in... 4 Get started...5 Request a vendor account... 5 Get code signing and debug token

More information

CA Plex and Microsoft Windows Presentation

CA Plex and Microsoft Windows Presentation CA Plex and Microsoft Windows Presentation Foundation (WPF) A Technology Preview 8C Rob Layzell CA Aligned LEFT ON COVER ONLY Terms of This Presentation This presentation was based on current information

More information

Microsoft 10978 - Introduction to Azure for Developers

Microsoft 10978 - Introduction to Azure for Developers 1800 ULEARN (853 276) www.ddls.com.au Microsoft 10978 - Introduction to Azure for Developers Length 5 days Price $4389.00 (inc GST) Version A Overview This course offers students the opportunity to take

More information

Getting Started with Android Programming (5 days) with Android 4.3 Jelly Bean

Getting Started with Android Programming (5 days) with Android 4.3 Jelly Bean Getting Started with Android Programming (5 days) with Android 4.3 Jelly Bean Course Description Getting Started with Android Programming is designed to give students a strong foundation to develop apps

More information

Wiley Publishing, Inc.

Wiley Publishing, Inc. CREATING ANDROID AND IPHONE APPLICATIONS Richard Wagner WILEY Wiley Publishing, Inc. INTRODUCTION xv CHAPTER 1: INTRODUCING FLASH DEVELOPMENT FOR MOBILE DEVICES 3 Expanding to the Mobile World 3 Discovering

More information

ANDROID TRAINING COURSE MODULES. Module-I: Introduction to Android. Introducing Android. Installing Development Tools. Using the Emulator.

ANDROID TRAINING COURSE MODULES. Module-I: Introduction to Android. Introducing Android. Installing Development Tools. Using the Emulator. ANDROID TRAINING COURSE MODULES Module-I: Introduction to Android Introducing Android. Installing Development Tools. Using the Emulator. Android developer tools. Eclipse, IDEs and Tools. Module-II: Introduction

More information

Donky Technical Overview

Donky Technical Overview Donky Technical Overview This document will provide the reader with an overview of the features offered and technologies used with the Donky Messaging Network. This document will give a good base level

More information

4 Application Development

4 Application Development PROFESSIONAL Android 4 Application Development INTRODUCTION xxxvii CHAPTER 1: HELLO, ANDROID 1 A Little Background 2 The Not-So-Distant Past 2 Living in the Future 3 What Android Isn't 3 Android: An Open

More information

Here to take you beyond Mobile Application development using Android Course details

Here to take you beyond Mobile Application development using Android Course details Here to take you beyond Mobile Application development using Android Course details Mobile Application Development using Android Objectives: To get you started with writing mobile application using Android

More information

Assignment # 1 (Cloud Computing Security)

Assignment # 1 (Cloud Computing Security) Assignment # 1 (Cloud Computing Security) Group Members: Abdullah Abid Zeeshan Qaiser M. Umar Hayat Table of Contents Windows Azure Introduction... 4 Windows Azure Services... 4 1. Compute... 4 a) Virtual

More information

Table of Contents. Adding Build Targets to the SDK 8 The Android Developer Tools (ADT) Plug-in for Eclipse 9

Table of Contents. Adding Build Targets to the SDK 8 The Android Developer Tools (ADT) Plug-in for Eclipse 9 SECOND EDITION Programming Android kjj *J} Zigurd Mednieks, Laird Dornin, G. Blake Meike, and Masumi Nakamura O'REILLY Beijing Cambridge Farnham Koln Sebastopol Tokyo Table of Contents Preface xiii Parti.

More information

Developing Microsoft SharePoint Server 2013 Advanced Solutions MOC 20489

Developing Microsoft SharePoint Server 2013 Advanced Solutions MOC 20489 Developing Microsoft SharePoint Server 2013 Advanced Solutions MOC 20489 Course Outline Module 1: Creating Robust and Efficient Apps for SharePoint In this module, you will review key aspects of the apps

More information

Android Application Development Distance Learning Program Brochure

Android Application Development Distance Learning Program Brochure Android Application Development Distance Learning Program Brochure About gnxt Systems gnxt systems is an IT professional services and product development company. We provide global solutions in the areas

More information

Windows Phone Programming in C# Rob Miles Version 1.0 January 2011

Windows Phone Programming in C# Rob Miles Version 1.0 January 2011 Windows Phone Programming in C# Rob Miles Version 1.0 January 2011 Contents Introduction 3 Welcome... 3 What you need to have before you start... 3 1 Windows Phone 7 4 1.1 The Windows Phone hardware...

More information

Programming Fundamentals of Web Applications Course 10958A; 5 Days

Programming Fundamentals of Web Applications Course 10958A; 5 Days Lincoln Land Community College Capital City Training Center 130 West Mason Springfield, IL 62702 217-782-7436 www.llcc.edu/cctc Programming Fundamentals of Web Applications Course 10958A; 5 Days Course

More information

The Great Office 365 Adventure

The Great Office 365 Adventure COURSE OVERVIEW The Great Office 365 Adventure Duration: 5 days It's no secret that Microsoft has been shifting its development strategy away from the SharePoint on-premises environment to focus on the

More information

This course provides students with the knowledge and skills to develop ASP.NET MVC 4 web applications.

This course provides students with the knowledge and skills to develop ASP.NET MVC 4 web applications. 20486B: Developing ASP.NET MVC 4 Web Applications Course Overview This course provides students with the knowledge and skills to develop ASP.NET MVC 4 web applications. Course Introduction Course Introduction

More information

GOA365: The Great Office 365 Adventure

GOA365: The Great Office 365 Adventure BEST PRACTICES IN OFFICE 365 DEVELOPMENT 5 DAYS GOA365: The Great Office 365 Adventure AUDIENCE FORMAT COURSE DESCRIPTION STUDENT PREREQUISITES Professional Developers Instructor-led training with hands-on

More information

Introduction to Azure for Developers

Introduction to Azure for Developers CÔNG TY CỔ PHẦN TRƯỜNG CNTT TÂN ĐỨC TAN DUC INFORMATION TECHNOLOGY SCHOOL JSC LEARN MORE WITH LESS! Course 10978: Introduction to Azure for Developers Length: 5 Days Audience: Developers Level: 300 Technology:

More information

Integrating SharePoint Sites within WebSphere Portal

Integrating SharePoint Sites within WebSphere Portal Integrating SharePoint Sites within WebSphere Portal November 2007 Contents Executive Summary 2 Proliferation of SharePoint Sites 2 Silos of Information 2 Security and Compliance 3 Overview: Mainsoft SharePoint

More information

Cookbook. Flash ios Apps. Christopher Caleb. 100 practical recipes for developing ios apps with Flash Professional and Adobe AIR PUBLISHING MUMBAI

Cookbook. Flash ios Apps. Christopher Caleb. 100 practical recipes for developing ios apps with Flash Professional and Adobe AIR PUBLISHING MUMBAI Flash ios Apps Cookbook 100 practical recipes for developing ios apps with Flash Professional and Adobe AIR Christopher Caleb PUBLISHING BIRMINGHAM - MUMBAI Preface 1 Chapter 1: Getting Started with ios

More information

Mobile Phones Operating Systems

Mobile Phones Operating Systems Mobile Phones Operating Systems José Costa Software for Embedded Systems Departamento de Engenharia Informática (DEI) Instituto Superior Técnico 2015-05-28 José Costa (DEI/IST) Mobile Phones Operating

More information

Running a Program on an AVD

Running a Program on an AVD Running a Program on an AVD Now that you have a project that builds an application, and an AVD with a system image compatible with the application s build target and API level requirements, you can run

More information

Expert Android Apps Development

Expert Android Apps Development Course Contents: 1. 2D Animations Frame-by-Frame Animation o Planning for Frame-by-Frame Animation o Creating the Activity o Adding Animation to the Activity Layout Animation o Basic Tweening Animation

More information

Microsoft Dynamics AX Windows 8 App Starter Kit. App Development Guide Version 1.0

Microsoft Dynamics AX Windows 8 App Starter Kit. App Development Guide Version 1.0 Microsoft Dynamics AX Windows 8 App Starter Kit App Development Guide Version 1.0 Table of Contents Microsoft Dynamics AX Windows 8 App Starter Kit... 1 App Development Guide Version 1.0... 1 1. Introduction...

More information

Introduction to Application Development with Silverlight for Windows Embedded. Abstract. Windows Embedded CE 6.0 R3 Technical Article

Introduction to Application Development with Silverlight for Windows Embedded. Abstract. Windows Embedded CE 6.0 R3 Technical Article Introduction to Application Development with Silverlight for Windows Embedded Windows Embedded CE 6.0 R3 Technical Article Writers: David Franklin Published: September 2009 Applies To: Windows Embedded

More information

Introduction to Android

Introduction to Android Introduction to Android Poll How many have an Android phone? How many have downloaded & installed the Android SDK? How many have developed an Android application? How many have deployed an Android application

More information

AppDev OnDemand Cloud Computing Learning Library

AppDev OnDemand Cloud Computing Learning Library AppDev OnDemand Cloud Computing Learning Library A full year of access to our cloud computing courses, plus future course releases included free! The AppDev OnDemand Cloud Computing Learning Library includes

More information

Getting Started with the Ed-Fi ODS and Ed-Fi ODS API

Getting Started with the Ed-Fi ODS and Ed-Fi ODS API Getting Started with the Ed-Fi ODS and Ed-Fi ODS API Ed-Fi ODS and Ed-Fi ODS API Version 2.0 - Technical Preview October 2014 2014 Ed-Fi Alliance, LLC. All rights reserved. Ed-Fi is a registered trademark

More information

DEPLOYING A VISUAL BASIC.NET APPLICATION

DEPLOYING A VISUAL BASIC.NET APPLICATION C6109_AppendixD_CTP.qxd 18/7/06 02:34 PM Page 1 A P P E N D I X D D DEPLOYING A VISUAL BASIC.NET APPLICATION After completing this appendix, you will be able to: Understand how Visual Studio performs deployment

More information

Windows Phone 7 Guide for iphone Application Developers

Windows Phone 7 Guide for iphone Application Developers Windows Phone 7 Guide for iphone Application Developers Microsoft 3/25/2011 Rev 3.0 About this Development Guide... 3 Chapter 1: Windows Phone 7 Platform introduced to iphone application developers...

More information

JavaFX Session Agenda

JavaFX Session Agenda JavaFX Session Agenda 1 Introduction RIA, JavaFX and why JavaFX 2 JavaFX Architecture and Framework 3 Getting Started with JavaFX 4 Examples for Layout, Control, FXML etc Current day users expect web user

More information

Beginning Android Programming

Beginning Android Programming Beginning Android Programming DEVELOP AND DESIGN Kevin Grant and Chris Haseman PEACHPIT PRESS WWW.PEACHPIT.COM C Introduction Welcome to Android xii xiv CHAPTER 1 GETTING STARTED WITH ANDROID 2 Exploring

More information

Developing ASP.NET MVC 4 Web Applications MOC 20486

Developing ASP.NET MVC 4 Web Applications MOC 20486 Developing ASP.NET MVC 4 Web Applications MOC 20486 Course Outline Module 1: Exploring ASP.NET MVC 4 The goal of this module is to outline to the students the components of the Microsoft Web Technologies

More information

55014-Upgrading Your Development Skills to SharePoint 2013

55014-Upgrading Your Development Skills to SharePoint 2013 Course Outline 55014-Upgrading Your Development Skills to SharePoint 2013 Duration: 5 days (30 hours) Target Audience: This course is intended for anyone interested in getting an introductory look at the

More information

fpafi/tl enterprise Microsoft Silverlight 5 and Windows Azure Enterprise Integration Silverlight Enterprise Applications on the Windows

fpafi/tl enterprise Microsoft Silverlight 5 and Windows Azure Enterprise Integration Silverlight Enterprise Applications on the Windows Microsoft Silverlight 5 and Windows Azure Enterprise Integration A step-by-step guide to creating and running scalable Silverlight Enterprise Applications on the Windows Azure platform David Burela 88

More information

Chapter 1 Domain Names...1

Chapter 1 Domain Names...1 Introduction Chapter 1 Domain Names...........................................1 1. Have You Thought of a Good Domain Name for Your Website? 2 2. Do You Need Multiple Domain Names? 4 3. How Much Should

More information

App Development for Modern UI MODULE 4: APP DEVELOPMENT ESSENTIALS

App Development for Modern UI MODULE 4: APP DEVELOPMENT ESSENTIALS App Development for Modern UI MODULE 4: APP DEVELOPMENT ESSENTIALS Module 4: App Development Essentials Windows, Bing, PowerPoint, Internet Explorer, Visual Studio, WebMatrix, DreamSpark, and Silverlight

More information

Visual Studio 2008: Windows Presentation Foundation

Visual Studio 2008: Windows Presentation Foundation Visual Studio 2008: Windows Presentation Foundation Course 6460A: Three days; Instructor-Led Introduction This three-day instructor-led course provides students with the knowledge and skills to build and

More information

Developing and deploying mobile apps

Developing and deploying mobile apps Developing and deploying mobile apps 1 Overview HTML5: write once, run anywhere for developing mobile applications 2 Native app alternative Android -- Java ios -- Objective-C Windows Mobile -- MS tools

More information

Chapter 1. Introduction to ios Development. Objectives: Touch on the history of ios and the devices that support this operating system.

Chapter 1. Introduction to ios Development. Objectives: Touch on the history of ios and the devices that support this operating system. Chapter 1 Introduction to ios Development Objectives: Touch on the history of ios and the devices that support this operating system. Understand the different types of Apple Developer accounts. Introduce

More information

$99.95 per user. SQL Server 2008/R2 Reporting Services CourseId: 162 Skill level: 100-400 Run Time: 37+ hours (195 videos)

$99.95 per user. SQL Server 2008/R2 Reporting Services CourseId: 162 Skill level: 100-400 Run Time: 37+ hours (195 videos) Course Description This course is a comprehensive course for Microsoft SQL Server 2008 and for SQL Server 2008 R2 Reporting Services (yes, it covers both!). This course features coverage of the two main

More information

Rapid Game Development Using Cocos2D-JS

Rapid Game Development Using Cocos2D-JS Rapid Game Development Using Cocos2D-JS An End-To-End Guide to 2D Game Development using Javascript Hemanthkumar and Abdul Rahman This book is for sale at http://leanpub.com/cocos2d This version was published

More information

CLOUD COMPUTING & WINDOWS AZURE

CLOUD COMPUTING & WINDOWS AZURE CLOUD COMPUTING & WINDOWS AZURE WORKSHOP Overview This workshop is an introduction to cloud computing and specifically Microsoft s public cloud offering in Windows Azure. Windows Azure has been described

More information

TARGETPROCESS HELP DESK PORTAL

TARGETPROCESS HELP DESK PORTAL TARGETPROCESS HELP DESK PORTAL v.2.17 User Guide This document describes TargetProcess Help Desk Portal functionality and provides information about TargetProcess Help Desk Portal usage. 1 HELP DESK PORTAL...2

More information

Windows Phone Guide for Android Application Developers

Windows Phone Guide for Android Application Developers Windows Phone Guide for Android Application Developers Microsoft 2/9/2012 Rev 5.0 Table of Content Microsoft... 1 Table of Content... 2 About this Development Guide... 5 Target Audience... 5 Conventions

More information

San Joaquin County Office of Education Career & Technical Education Web Design ~ Course Outline CBEDS#: 4601

San Joaquin County Office of Education Career & Technical Education Web Design ~ Course Outline CBEDS#: 4601 Web Design Course Outline I II 1 Course Content 5 5 Student Evaluation Employment Opportunities 2 XHTML 10 10 Creating an HTML Document Formatting Text with HTML Adding Graphics with Multimedia Using forms

More information

The knowledge of ASP.NET 2.0 is a must. Knowledge of Sharepoint Portal Server (SPS 2003) would be an added advantage.

The knowledge of ASP.NET 2.0 is a must. Knowledge of Sharepoint Portal Server (SPS 2003) would be an added advantage. Course Title : SharePoint Portal Server Development(MOSS 2010) Duration : 5 days Microsoft Office SharePoint Server 2010 is a set of integrated server platform technologies used for connecting people,

More information

Developing Microsoft Azure Solutions 20532B; 5 Days, Instructor-led

Developing Microsoft Azure Solutions 20532B; 5 Days, Instructor-led Developing Microsoft Azure Solutions 20532B; 5 Days, Instructor-led Course Description This course is intended for students who have experience building vertically scaled applications. Students should

More information

Programming with the Microsoft.NET Framework Using Microsoft Visual Studio 2005 (VB)

Programming with the Microsoft.NET Framework Using Microsoft Visual Studio 2005 (VB) Programming with the Microsoft.NET Framework Using Microsoft Visual Studio 2005 (VB) Course Number: 4995 Length: 5 Day(s) Certification Exam There are no exams associated with this course. Course Overview

More information

Creating Next-Generation User Experience with Windows Aero, Windows Presentation Foundation and Silverlight on Windows Embedded Standard 7

Creating Next-Generation User Experience with Windows Aero, Windows Presentation Foundation and Silverlight on Windows Embedded Standard 7 Creating Next-Generation User Experience with Windows Aero, Windows Presentation Foundation and Silverlight on Windows Embedded Standard 7 Windows Embedded Standard uses the latest Technology included

More information

Professional. SlickEdif. John Hurst IC..T...L. i 1 8 О 7» \ WILEY \ Wiley Publishing, Inc.

Professional. SlickEdif. John Hurst IC..T...L. i 1 8 О 7» \ WILEY \ Wiley Publishing, Inc. Professional SlickEdif John Hurst IC..T...L i 1 8 О 7» \ WILEY \! 2 0 0 7 " > Wiley Publishing, Inc. Acknowledgments Introduction xiii xxv Part I: Getting Started with SiickEdit Chapter 1: Introducing

More information

Building Business Applications with SharePoint 2010 and Office 2010. October 22, 2010

Building Business Applications with SharePoint 2010 and Office 2010. October 22, 2010 Building Business Applications with SharePoint 2010 and Office 2010 October 22, 2010 Session Promise (per the Abstract) Office Business Applications (OBAs) are applications that integrate the Microsoft

More information

Java 7 Recipes. Freddy Guime. vk» (,\['«** g!p#« Carl Dea. Josh Juneau. John O'Conner

Java 7 Recipes. Freddy Guime. vk» (,\['«** g!p#« Carl Dea. Josh Juneau. John O'Conner 1 vk» Java 7 Recipes (,\['«** - < g!p#«josh Juneau Carl Dea Freddy Guime John O'Conner Contents J Contents at a Glance About the Authors About the Technical Reviewers Acknowledgments Introduction iv xvi

More information

Microsoft Dynamics CRM2015 Fast Track for developers

Microsoft Dynamics CRM2015 Fast Track for developers Microsoft Dynamics CRM2015 Fast Track for developers Eğitim Tipi ve Süresi: 5 Days ILT 5 Days VILT This course offers detailed and interactive information on how to develop extensions for Microsoft Dynamics

More information

Programming in HTML5 with JavaScript and CSS3

Programming in HTML5 with JavaScript and CSS3 Course 20480B: Programming in HTML5 with JavaScript and CSS3 Course Details Course Outline Module 1: Overview of HTML and CSS This module provides an overview of HTML and CSS, and describes how to use

More information

Developing Microsoft Azure Solutions

Developing Microsoft Azure Solutions Course 20532A: Developing Microsoft Azure Solutions Page 1 of 7 Developing Microsoft Azure Solutions Course 20532A: 4 days; Instructor-Led Introduction This course is intended for students who have experience

More information

Microsoft Office Programs and SharePoint Products and Technologies Integration Fair, Good, Better, Best

Microsoft Office Programs and SharePoint Products and Technologies Integration Fair, Good, Better, Best Microsoft Office Programs and SharePoint Products and Technologies Integration Fair, Good, Better, Best White Paper April 2007 For the latest information, go to http://www.microsoft.com/office for Office

More information

Developing Android Apps for BlackBerry 10. JAM854 Mike Zhou- Developer Evangelist, APAC Nov 30, 2012

Developing Android Apps for BlackBerry 10. JAM854 Mike Zhou- Developer Evangelist, APAC Nov 30, 2012 Developing Android Apps for BlackBerry 10 JAM854 Mike Zhou- Developer Evangelist, APAC Nov 30, 2012 Overview What is the BlackBerry Runtime for Android Apps? Releases and Features New Features Demo Development

More information

Developing Microsoft Azure Solutions 20532A; 5 days

Developing Microsoft Azure Solutions 20532A; 5 days Lincoln Land Community College Capital City Training Center 130 West Mason Springfield, IL 62702 217-782-7436 www.llcc.edu/cctc Developing Microsoft Azure Solutions 20532A; 5 days Course Description This

More information

Developing ASP.NET MVC 4 Web Applications

Developing ASP.NET MVC 4 Web Applications Course M20486 5 Day(s) 30:00 Hours Developing ASP.NET MVC 4 Web Applications Introduction In this course, students will learn to develop advanced ASP.NET MVC applications using.net Framework 4.5 tools

More information

Practical Android Projects Lucas Jordan Pieter Greyling

Practical Android Projects Lucas Jordan Pieter Greyling Practical Android Projects Lucas Jordan Pieter Greyling Apress s w«^* ; i - -i.. ; Contents at a Glance Contents --v About the Authors x About the Technical Reviewer xi PAcknowiedgments xii Preface xiii

More information

Kentico CMS 5 Developer Training Syllabus

Kentico CMS 5 Developer Training Syllabus Kentico CMS 5 Developer Training Syllabus June 2010 Page 2 Contents About this Course... 4 Overview... 4 Audience Profile... 4 At Course Completion... 4 Course Outline... 5 Module 1: Overview of Kentico

More information