Topics. Windows Phone

Size: px
Start display at page:

Download "Topics. Windows Phone"

Transcription

1 Session 4.5

2 Topics

3 The Story So Far 3

4 Multi-page applications 4

5 Adding another page 5

6 Pages and projects 6

7 Page Navigation private void page2button_click(object sender, RoutedEventArgs e) { NavigationService.Navigate( new Uri("/CustomerDetailPage.xaml", UriKind.RelativeOrAbsolute)); } 7

8 The UriKind private void page2button_click(object sender, RoutedEventArgs e) { NavigationService.Navigate( new Uri("/CustomerDetailPage.xaml", UriKind.RelativeOrAbsolute)); } 8

9 Missing page exceptions 9

10 Using the Back button 10

11 Overriding the Back button 11

12 Disabling the Back Button private void PhoneApplicationPage_BackKeyPress( object sender, System.ComponentModel.CancelEventArgs e) { e.cancel = true; } 12

13 Using a MessageBox private void PhoneApplicationPage_BackKeyPress( object sender, System.ComponentModel.CancelEventArgs e) { if (MessageBox.Show("Do you really want to exit?", "Page Exit", MessageBoxButton.OKCancel)!= MessageBoxResult.OK) { e.cancel = true; } } 13

14 Passing data between pages 14

15 Assembling a data uri // Get the selected customer from the list Customer selectedcustomer = customerlist.selecteditem as Customer; // Build a navigation string containing the information NavigationService.Navigate( new Uri("/CustomerDetailPage.xaml?" + "name=" + selectedcustomer.name + "&" + "address=" + selectedcustomer.address, UriKind.Relative)); 15

16 Page navigated events 16

17 Loading data from the uri protected override void OnNavigatedTo (System.Windows.Navigation.NavigationEventArgs e) { string name, address; if (NavigationContext.QueryString.TryGetValue("name", out name)) nametextblock.text = name; } 17

18 Demo 2: Passing Data 18

19 Sharing objects between pages 19

20 The App.xaml page 20

21 The App class public partial class App : Application { // To be used from all pages in the application public Customer ActiveCustomer; } 21

22 Getting a reference to the App protected override void OnNavigatedTo( System.Windows.Navigation.NavigationEventArgs e) { base.onnavigatedto(e); // Get the parent App containing the active customer App thisapp = Application.Current as App; // Set the data context for the Grid to the selected // customer customerdisplaygrid.datacontext = thisapp.activecustomer; } 22

23 Getting a reference to the App protected override void OnNavigatedTo( System.Windows.Navigation.NavigationEventArgs e) { base.onnavigatedto(e); // Get the parent App containing the active customer App thisapp = Application.Current as App; // Set the data context for the Grid to the selected // customer customerdisplaygrid.datacontext = thisapp.activecustomer; } 23

24 Getting a reference to the App protected override void OnNavigatedTo( System.Windows.Navigation.NavigationEventArgs e) { base.onnavigatedto(e); // Get the parent App containing the active customer App thisapp = Application.Current as App; // Set the data context for the Grid to the selected // customer customerdisplaygrid.datacontext = thisapp.activecustomer; } 24

25 Getting a reference to the App protected override void OnNavigatedTo( System.Windows.Navigation.NavigationEventArgs e) { base.onnavigatedto(e); // Get the parent App containing the active customer App thisapp = Application.Current as App; // Set the data context for the Grid to the selected // customer customerdisplaygrid.datacontext = thisapp.activecustomer; } 25

26 Setting the Edit Data Context protected override void OnNavigatedTo( System.Windows.Navigation.NavigationEventArgs e) { base.onnavigatedto(e); // Get the parent App containing the active customer App thisapp = Application.Current as App; // Set the data context for the Grid to the selected // customer customerdisplaygrid.datacontext = thisapp.activecustomer; } 26

27 Demo 3: Shared Data 27

28 Review 28

Microsoft Corporation

Microsoft Corporation Microsoft Corporation http://www.jeff.wilcox.name/ 2 3 Display 480x800 QVGA Other resolutions in the future Capacitive touch 4+ contact points Sensors A-GPS, Accelerometer, Compass, Light Camera 5+ megapixels

More information

Programos gyvavimo ciklas

Programos gyvavimo ciklas Programos gyvavimo ciklas Būsenos Būsenos Startavimas App.xaml App.xaml.cs App() App.InitializePhoneApplication() {.. // neliečiamas App.Application_Launching() App.CompleteInitializePhoneApplication Aplikacija

More information

sharpcorner.com/uploadfile/37db1d/4958/default.aspx?articleid=cb0b291c-52ae-4b80-a95c- 438d76fa1145

sharpcorner.com/uploadfile/37db1d/4958/default.aspx?articleid=cb0b291c-52ae-4b80-a95c- 438d76fa1145 Navigation in Silverlight -3 1. Introduction: In previous article we learn to navigate to another Silverlight page without using navigation framework, which is new feature in Silverlight 3. Read it Here:

More information

Visual Studio.NET enables quick, drag-and-drop construction of form-based applications

Visual Studio.NET enables quick, drag-and-drop construction of form-based applications Visual Studio.NET enables quick, drag-and-drop construction of form-based applications Event-driven, code-behind programming Visual Studio.NET WinForms Controls Part 1 Event-driven, code-behind programming

More information

windows-10-universal #windows- 10-universal

windows-10-universal #windows- 10-universal windows-10-universal #windows- 10-universal Table of Contents About 1 Chapter 1: Getting started with windows-10-universal 2 Remarks 2 Examples 2 Installation or Setup 2 Creating a new project (C# / XAML)

More information

Advance Windows Phone Development. Akber Alwani Window Phone 7 Development EP.NET Professionals User Group

Advance Windows Phone Development. Akber Alwani Window Phone 7 Development EP.NET Professionals User Group Advance Windows Phone Development Akber Alwani Window Phone 7 Development EP.NET Professionals User Group http://www.epdotnet.com 7 Agenda Page Navigation Application Bar and System tray Orientation-Aware

More information

ComponentOne. PdfViewer for WPF and Silverlight

ComponentOne. PdfViewer for WPF and Silverlight ComponentOne PdfViewer for WPF and Silverlight GrapeCity US GrapeCity 201 South Highland Avenue, Suite 301 Pittsburgh, PA 15206 Tel: 1.800.858.2739 412.681.4343 Fax: 412.681.4384 Website: https://www.grapecity.com/en/

More information

Building Extensible XAML Client Apps

Building Extensible XAML Client Apps Building Extensible XAML Client Apps Brian Noyes IDesign Inc. (www.idesign.net) brian.noyes@idesign.net, @briannoyes About Brian Chief Architect IDesign Inc. (www.idesign.net) Microso7 Regional Director

More information

Windows Universal. Devices Architecture Frameworks

Windows Universal. Devices Architecture Frameworks Windows Universal Devices Architecture Frameworks Inheritance and specification Windows Mobile since 2000 Native programming using C/C++ in Windows CE.NET CF since 2003 Windows Phone 7 new framework /

More information

Windows 8. Rainer Stropek. System Architecture. System Architecture re of Windows Store Apps. Saves the day. software architects gmbh

Windows 8. Rainer Stropek. System Architecture. System Architecture re of Windows Store Apps. Saves the day. software architects gmbh System Architecture re of Windows Store Apps Rainer Stropek software architects gmbh Windows 8 System Architecture Mail Web Twitter rainer@timecockpit.comcom http://www.timecockpit.com @rstropek Saves

More information

Events. Event Handler Arguments 12/12/2017. EEE-425 Programming Languages (2016) 1

Events. Event Handler Arguments 12/12/2017. EEE-425 Programming Languages (2016) 1 Events Events Single Event Handlers Click Event Mouse Events Key Board Events Create and handle controls in runtime An event is something that happens. Your birthday is an event. An event in programming

More information

Lab 4: Adding a Windows User-Interface

Lab 4: Adding a Windows User-Interface Lab 4: Adding a Windows User-Interface In this lab, you will cover the following topics: Creating a Form for use with Investment objects Writing event-handler code to interact with Investment objects Using

More information

User Filter State. Chapter 11. Overview of User Filter State. The PDSAUserFilterState Class

User Filter State. Chapter 11. Overview of User Filter State. The PDSAUserFilterState Class Chapter 11 User Filter State When users visit a search page (or an add, edit and delete page with a set of search filters above the grid), each user will enter search criteria, drill down on a search result

More information

It is necessary to follow all of the sections below in the presented order. Skipping steps may prevent subsequent sections from working correctly.

It is necessary to follow all of the sections below in the presented order. Skipping steps may prevent subsequent sections from working correctly. The following example demonstrates how to create a basic custom module, including all steps required to create Installation packages for the module. You can use the packages to distribute the module to

More information

KillTest. 半年免费更新服务

KillTest.   半年免费更新服务 KillTest 质量更高 服务更好 学习资料 http://www.killtest.cn 半年免费更新服务 Exam : 70-502 (C#) Title : TS: Microsoft.NET Framework 3.5 Windows Presentation Foundation Version : Demo 1 / 15 1. You are creating a Windows Presentation

More information

Navigating Viewpoint V6 Exploring the Viewpoint Main Menu

Navigating Viewpoint V6 Exploring the Viewpoint Main Menu Navigating Viewpoint V6 Exploring the Viewpoint Main Menu Table of Contents About this Course 3 Viewpoint Folder Structure 4 File Menu 5 View Menu 6 Options Menu 7 User Options 7 Help Menu 9 Support 9

More information

RadPDFViewer For Silverlight and WPF

RadPDFViewer For Silverlight and WPF RadPDFViewer For Silverlight and WPF This tutorial will introduce the RadPDFViewer control, part of the Telerik suite of XAML controls Setting Up The Project To begin, open Visual Studio and click on the

More information

Lecture # 6 Engr. Ali Javed 11th March, 2014

Lecture # 6 Engr. Ali Javed 11th March, 2014 Lecture # 6 Engr. Ali Javed 11 th March, 2014 Instructor s Information Instructor: Engr. Ali Javed Assistant Professor Department of Software Engineering U.E.T Taxila Email: ali.javed@uettaxila.edu.pk

More information

HCA Tech Note 120. Configuring the Control UI Home Page. Option 1: HCA constructs the home page

HCA Tech Note 120. Configuring the Control UI Home Page. Option 1: HCA constructs the home page Configuring the Control UI Home Page HCA contains two different user interfaces: One interface called the Development UI - where all design elements and tools are available and you can make changes, and

More information

Yes, this is still a listbox!

Yes, this is still a listbox! Yes, this is still a listbox! Step 1: create a new project I use the beta 2 of Visual Studio 2008 ( codename Orcas ) and Expression Blend 2.0 September preview for this tutorial. You can download the beta2

More information

COCKPIT Build 24

COCKPIT Build 24 COCKPIT 4.5.1 Build 24 Administration Console 23.11.14 Written By Dina Borisov 2014 Jetro Platforms. All rights reserved. Contents Upgrading the Comparison Screen... 3 A new Print Drivers Comparison window

More information

Getting Started Quick Start Guide

Getting Started Quick Start Guide Getting Started Quick Start Guide This guide provides tips for users new to using the Learning Environment. It discusses how to navigate the main areas and how to change your personal preferences and settings.

More information

Navigating Viewpoint V6 Function Keys

Navigating Viewpoint V6 Function Keys Navigating Viewpoint V6 Function Keys Table of Contents About this Course 3 F1 Online Help 4 F2 Rename Folder & Edit Cell 4 F3 Field Properties 4 F4 Lookup 6 F5 Setup 8 F6 Calculator 9 F7 Calendar 10 F8

More information

Inheriting Windows Forms with Visual C#.NET

Inheriting Windows Forms with Visual C#.NET Inheriting Windows Forms with Visual C#.NET Overview In order to understand the power of OOP, consider, for example, form inheritance, a new feature of.net that lets you create a base form that becomes

More information

Revel for Canvas Configuration Guide for System Administrators

Revel for Canvas Configuration Guide for System Administrators Revel for Canvas Configuration Guide for System Administrators Overview This document describes the configuration for enabling Pearson Revel within the Canvas Learning Management System, including: 1.

More information

Chapter 14. Additional Topics in C# 2010 The McGraw-Hill Companies, Inc. All rights reserved. McGraw-Hill

Chapter 14. Additional Topics in C# 2010 The McGraw-Hill Companies, Inc. All rights reserved. McGraw-Hill Chapter 14 Additional Topics in C# McGraw-Hill 2010 The McGraw-Hill Companies, Inc. All rights reserved. Chapter Objectives - 1 Validate user input in the Validating event handler and display messages

More information

S AMPLE CHAPTER IN ACTION. Timothy Binkley-Jones Massimo Perga Michael Sync MANNING

S AMPLE CHAPTER IN ACTION. Timothy Binkley-Jones Massimo Perga Michael Sync MANNING S AMPLE CHAPTER IN ACTION Timothy Binkley-Jones Massimo Perga Michael Sync MANNING Windows Phone 7 in Action by Timothy Binkley-Jones Massimo Perga Michael Sync Chapter 2 Copyright 2013 Manning Publications

More information

Workspace Desktop Edition Developer's Guide. Frequently Asked Questions

Workspace Desktop Edition Developer's Guide. Frequently Asked Questions Workspace Desktop Edition Developer's Guide Frequently Asked Questions 11/27/2017 Contents 1 Frequently Asked Questions 1.1 Is it possible to hide or select custom views? 1.2 How can I use a URI passed

More information

Launchers and Choosers Hands-on Lab. Hands-On Lab. Launchers and Choosers. Lab version: Last updated: 12/8/2010. Page 1

Launchers and Choosers Hands-on Lab. Hands-On Lab. Launchers and Choosers. Lab version: Last updated: 12/8/2010. Page 1 Hands-On Lab Launchers and Choosers Lab version: 1.0.0 Last updated: 12/8/2010 Page 1 CONTENTS Overview... 3 Exercise 1: Introduction to the Windows Phone Launchers... 8 Task 1 Adding and Navigating to

More information

Configure 802.1x Authentication with PEAP, ISE 2.1 and WLC 8.3

Configure 802.1x Authentication with PEAP, ISE 2.1 and WLC 8.3 Configure 802.1x Authentication with PEAP, ISE 2.1 and WLC 8.3 Contents Introduction Prerequisites Requirements Components Used Configure Network Diagram Configuration Declare RADIUS Server on WLC Create

More information

Edulog Parent Portal

Edulog Parent Portal Edulog Parent Portal Edulog Parent Portal can be accessed via a web browser or through the mobile application. It will allow students and their parents/guardians to view the location of their bus during

More information

How to use character and paragraph styles

How to use character and paragraph styles How to use character and paragraph styles Whether you re working with long or short documents, styles can help you keep text formatting consistent. Styles are a collection of text attributes you can save

More information

User Group Configuration

User Group Configuration CHAPTER 90 The role and user group menu options in the Cisco Unified Communications Manager Administration User Management menu allow users with full access to configure different levels of access for

More information

What s New in Xcode App Signing

What s New in Xcode App Signing Developer Tools #WWDC16 What s New in Xcode App Signing Developing and distributing Session 401 Joshua Pennington Tools Engineering Manager Itai Rom Tools Engineer 2016 Apple Inc. All rights reserved.

More information

Voice Mail User s Guide

Voice Mail User s Guide Voice Mail User s Guide Introduction The MX voice mail server configures mail boxes and accesses voice messages for users, ACD groups, and operators. This user s guide describes voice mail server procedures

More information

Work with the Google Folder App

Work with the Google Folder App Work with the Google Folder App Blackboard Web Community Manager Trademark Notice Blackboard, the Blackboard logos, and the unique trade dress of Blackboard are the trademarks, service marks, trade dress

More information

Chromatic Remote Control Product Guide Executive Way, Suite A Frederick, MD 21704

Chromatic Remote Control Product Guide Executive Way, Suite A Frederick, MD 21704 Chromatic Remote Control Product Guide 7340 Executive Way, Suite A Frederick, MD 21704 Document Version: 2.1 December 2013 Contents 1 Introduction... 3 2 Accessing Chromatic Remote Control... 4 2.1 Configure

More information

Intents. 18 December 2018 Lecture Dec 2018 SE 435: Development in the Android Environment 1

Intents. 18 December 2018 Lecture Dec 2018 SE 435: Development in the Android Environment 1 Intents 18 December 2018 Lecture 4 18 Dec 2018 SE 435: Development in the Android Environment 1 Topics for Today Building an Intent Explicit Implicit Other features: Data Result Sources: developer.android.com

More information

Santiago Canyon College Computer Science

Santiago Canyon College Computer Science P a g e 1 Santiago Canyon College Computer Science The.Net Threading Model Introduction The purpose of this paper is to introduce you to multi-threading in Visual Studio. Learning how to take advantage

More information

Introduction to ArcGIS Online and Story Maps

Introduction to ArcGIS Online and Story Maps Introduction to ArcGIS Online and Story Maps Presented by the University of Connecticut s Center for Land Use Education and Research (CLEAR) CLEAR 1 Welcome! Instructor Introductions Course logistics Student

More information

Course 55197A: Microsoft SharePoint Server 2016 for the Site Owner/Power User

Course 55197A: Microsoft SharePoint Server 2016 for the Site Owner/Power User Skip to main content Course 55197A: Microsoft SharePoint Server 2016 for the Site Owner/Power User - Course details Course Outline Module 1: The Role of the Site Owner This module provides an introduction

More information

CS3240 Human-Computer Interaction Lab Sheet Lab Session 3 Designer & Developer Collaboration

CS3240 Human-Computer Interaction Lab Sheet Lab Session 3 Designer & Developer Collaboration CS3240 Human-Computer Interaction Lab Sheet Lab Session 3 Designer & Developer Collaboration Page 1 Overview In this lab, users will get themselves familarise with fact that Expression Blend uses the identical

More information

Writing Object Oriented Software with C#

Writing Object Oriented Software with C# Writing Object Oriented Software with C# C# and OOP C# is designed for the.net Framework The.NET Framework is Object Oriented In C# Your access to the OS is through objects You have the ability to create

More information

04 Sharing Code Between Windows 8 and Windows Phone 8 in Visual Studio. Ben Riga

04 Sharing Code Between Windows 8 and Windows Phone 8 in Visual Studio. Ben Riga 04 Sharing Code Between Windows 8 and Windows Phone 8 in Visual Studio Ben Riga http://about.me/ben.riga Course Topics Building Apps for Both Windows 8 and Windows Phone 8 Jump Start 01 Comparing Windows

More information

Mastering UIKit on tvos

Mastering UIKit on tvos App Frameworks #WWDC16 Mastering UIKit on tvos Session 210 Justin Voss UIKit Engineer 2016 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission from

More information

Updated to reflect current working practices and software application. Version 2.0 January 2016

Updated to reflect current working practices and software application. Version 2.0 January 2016 AEC (UK) BIM Technology Protocol for GRAPHISOFT ARCHICAD Template Checklist Practical implementation of BIM for the UK Architectural, Engineering and Construction (AEC) industry. Version 2.0 January 2016

More information

The C# Programming Language. Overview

The C# Programming Language. Overview The C# Programming Language Overview Microsoft's.NET Framework presents developers with unprecedented opportunities. From web applications to desktop and mobile platform applications - all can be built

More information

NAT Routemaps Outside-to-Inside Support

NAT Routemaps Outside-to-Inside Support The feature enables you to configure a NAT routemap configuration that allows IP sessions to be initiated from outside the network to inside the network. This module explains how to configure the feature.

More information

Http://www.passcert.com Exam : 070-502 Title : TS: Microsoft.NET Framework 3.5 Windows Presentation Foundation Version : Demo 1 / 39 1. You are creating a Windows Presentation Foundation application by

More information

CS 349 / SE 382 Design Patterns. Professor Michael Terry January 21, 2009

CS 349 / SE 382 Design Patterns. Professor Michael Terry January 21, 2009 CS 349 / SE 382 Design Patterns Professor Michael Terry January 21, 2009 Today s Agenda More demos! Design patterns CS 349 / SE 382 / 2 Announcements Assignment 1 due Monday at 5PM! CS 349 / SE 382 / 3

More information

CS3240 Human-Computer Interaction

CS3240 Human-Computer Interaction CS3240 Human-Computer Interaction Lab Session 3 Supplement Creating a Picture Viewer Silverlight Application Page 1 Introduction This supplementary document is provided as a reference that showcases an

More information

Fine-Grain NBAR for Selective Applications

Fine-Grain NBAR for Selective Applications By default NBAR operates in the fine-grain mode, offering NBAR's full application recognition capabilities. Used when per-packet reporting is required, fine-grain mode offers a troubleshooting advantage.

More information

How to Use Panopto Video Series Transcript

How to Use Panopto Video Series Transcript How to Use Panopto Video Series Transcript Video 1: Introduction Hello new students and welcome to Auburn Agriculture Online at Auburn University! In this video, I m going to briefly show you how to use

More information

FOREWORD WHAT WE CAN LEARN TARGET READER

FOREWORD WHAT WE CAN LEARN TARGET READER i FOREWORD All the praises and gratitude to Allah SWT for the chance and the strength to compile and finish this e-book titled Silverlight for Windows Phone: LEARN & PRACTICE. It has been a enjoyable journey

More information

Index. Windows 10 running, 199 suspended state, 199 terminate apps,

Index. Windows 10 running, 199 suspended state, 199 terminate apps, A Application lifecycle activation ApplicationExecution State, 216 restoring navigation state, 216 217 restoring session information, 217 218 state transitions, 200 activation, 201 killing, 202 launching,

More information

Administrative Procedure on Electronic Records

Administrative Procedure on Electronic Records Administrative Procedure on Electronic Records Questions and Answers Presented by Wayne Bullard, General Counsel, New Hanover County Schools, at Principal s Meeting, October 8, 2015 Question 1: You send

More information

VMware Horizon Client for Windows 10 UWP User Guide. Modified on 21 SEP 2017 VMware Horizon Client for Windows 10 UWP 4.6

VMware Horizon Client for Windows 10 UWP User Guide. Modified on 21 SEP 2017 VMware Horizon Client for Windows 10 UWP 4.6 VMware Horizon Client for Windows 10 UWP User Guide Modified on 21 SEP 2017 VMware Horizon Client for Windows 10 UWP 4.6 You can find the most up-to-date technical documentation on the VMware website at:

More information

Creating a Parent Account and setting up Notification preferences.

Creating a Parent Account and setting up Notification preferences. Creating a Parent Account and setting up Notification preferences. This document will walk you through the steps to: 1. Create a Parent Account so that you can have access to the courses your child is

More information

Porting Advanced User Interfaces From ios* To Windows 8*

Porting Advanced User Interfaces From ios* To Windows 8* Porting Advanced User Interfaces From ios* To Windows 8* Abstract This article discusses porting advanced user interface features from an ios app to a Windows Store app. We use an electronic medical record

More information

The anatomy of Content Template Catalog v4: how to create custom CTC websites. David Strachan IBM

The anatomy of Content Template Catalog v4: how to create custom CTC websites. David Strachan IBM The anatomy of Content Template Catalog v4: how to create custom CTC websites David Strachan IBM Abstract This session is aimed at everyone who needs to understand how CTC works. In the session we'll dissect

More information

BraindumpsQA. IT Exam Study materials / Braindumps

BraindumpsQA.  IT Exam Study materials / Braindumps BraindumpsQA http://www.braindumpsqa.com IT Exam Study materials / Braindumps Exam : MB2-712 Title : Microsoft Dynamics CRM 2016 Customization and Configuration Vendor : Microsoft Version : DEMO Get Latest

More information

Office 365. Exporting and Importing Safe and Blocked Senders List

Office 365. Exporting and Importing Safe and Blocked Senders List Office 365 Exporting and Importing Safe and Blocked Senders List Table of Contents Exporting Safe and Blocked Senders List... 3 Exporting Safe Senders List... 3 Exporting Blocked Senders List... 8 Importing

More information

URI-Based Dialing Enhancements

URI-Based Dialing Enhancements The feature describes the enhancements made to Uniform Resource Identifier (URI)-based dialing on Cisco Unified Border Element (Cisco UBE) for Session Initiation Protocol (SIP) calls. The feature includes

More information

URI-Based Dialing Enhancements

URI-Based Dialing Enhancements The feature describes the enhancements made to Uniform Resource Identifier (URI)-based dialing on Cisco Unified Border Element (Cisco UBE) for Session Initiation Protocol (SIP) calls. The feature includes

More information

Configuring an Error Response Code upon an Out-of-Dialog OPTIONS Ping Failure

Configuring an Error Response Code upon an Out-of-Dialog OPTIONS Ping Failure Configuring an Error Response Code upon an Out-of-Dialog OPTIONS Ping Failure Cisco Unified Border Element (Cisco UBE) provides an option to configure the error response code when a dial peer is busied

More information

GRAPHIC WEB DESIGNER PROGRAM

GRAPHIC WEB DESIGNER PROGRAM NH111 Outlook Level 1 16 Total Hours COURSE TITLE: Outlook Level 1 COURSE OVERVIEW: This course provides students with the knowledge and skills to utilize Microsoft Outlook to manage all aspects of email

More information

Class Climate Dept Selection

Class Climate Dept Selection Instruction Class Climate Dept Selection 1) Log in to your Cal Poly Portal. 2) Under the My Apps select Student & HR Administration. Screenshot/Details 3) Use the following navigation: Main Menu > Cal

More information

Enabling ALGs and AICs in Zone-Based Policy Firewalls

Enabling ALGs and AICs in Zone-Based Policy Firewalls Enabling ALGs and AICs in Zone-Based Policy Firewalls Zone-based policy firewalls support Layer 7 application protocol inspection along with application-level gateways (ALGs) and application inspection

More information

XAML - BUTTON. The Button class represents the most basic type of button control. The hierarchical inheritance of Button class is as follows

XAML - BUTTON. The Button class represents the most basic type of button control. The hierarchical inheritance of Button class is as follows http://www.tutorialspoint.com/xaml/xaml_button.htm XAML - BUTTON Copyright tutorialspoint.com The Button class represents the most basic type of button control. The hierarchical inheritance of Button class

More information

Contextual Configuration Diff Utility

Contextual Configuration Diff Utility The feature provides the ability to perform a line-by-line comparison of any two configuration files (accessible through the Cisco IOS XE Integrated File System [IFS]) and generate a list of the differences

More information

Binghamton University. CS-140 Fall Dynamic Types

Binghamton University. CS-140 Fall Dynamic Types Dynamic Types 1 Assignment to a subtype If public Duck extends Bird { Then, you may code:. } Bird bref; Duck quack = new Duck(); bref = quack; A subtype may be assigned where the supertype is expected

More information

Creating a Transacted Resource Using System.Transactions (Lab 2) (Visual C#, Visual Basic)

Creating a Transacted Resource Using System.Transactions (Lab 2) (Visual C#, Visual Basic) 1 System.Transactions in Whidbey Creating a Transacted Resource Using System.Transactions (Lab 2) (Visual C#, Visual Basic) For the Visual Basic lab, go to page 17. Objectives After completing this lab,

More information

WebEx New user Orientation. Meeting Organizer Guide

WebEx New user Orientation. Meeting Organizer Guide WebEx New user Orientation Meeting Organizer Guide OBJECTIVE: AGENDA: I. II. III. IV. Utilize the tools provided at Kent State University to host and attend online meetings via the WebEx application and

More information

Enabling ALGs and AICs in Zone-Based Policy Firewalls

Enabling ALGs and AICs in Zone-Based Policy Firewalls Enabling ALGs and AICs in Zone-Based Policy Firewalls Zone-based policy firewalls support Layer 7 application protocol inspection along with application-level gateways (ALGs) and application inspection

More information

Chain of Responsibility

Chain of Responsibility Chain of Responsibility Behavioral Patterns Behavioral Patterns The patterns of communication between objects or classes Behavioral class patterns Behavioral object patterns 2 Intent Avoid coupling the

More information

IPU Assembly APP USER MANUAL

IPU Assembly APP USER MANUAL IPU Assembly APP USER MANUAL Downloading the App Get the app 1 Go the right store. Access the App Store on ios devices and the Play Store on Android (https://crowd.cc/s/1n7xa). If you re using a Blackberry

More information

INTRODUCTION COS MOBILE DEVELOPMENT WHAT IS ANDROID CORE OS. 6-Android Basics.key - February 21, Linux-based.

INTRODUCTION COS MOBILE DEVELOPMENT WHAT IS ANDROID CORE OS. 6-Android Basics.key - February 21, Linux-based. 1 COS 470 - MOBILE DEVELOPMENT INTRODUCTION 2 WHAT IS ANDROID Linux-based Java/Kotlin Android Runtime (ART) System Apps SMS, Calendar, etc. Platform Architecture 3 CORE OS Linux (64 bit) Each app is a

More information

Agile Implementation The Anaplan Way Dashboard Input Guides

Agile Implementation The Anaplan Way Dashboard Input Guides Agile Implementation The Anaplan Way Dashboard Input Guides Last Updated: December 06 Setup. Fill out project details in the Project Information section. **The start and end dates impact the filter throughout,

More information

Monetize and Promote Your App with iad

Monetize and Promote Your App with iad Media #WWDC15 Monetize and Promote Your App with iad From design to launch Session 503 Carol Teng Shashank Phadke 2015 Apple Inc. All rights reserved. Redistribution or public display not permitted without

More information

SSH Algorithms for Common Criteria Certification

SSH Algorithms for Common Criteria Certification The feature provides the list and order of the algorithms that are allowed for Common Criteria Certification. This module describes how to configure the encryption, Message Authentication Code (MAC), and

More information

Participant Guide ANGELS AMONG US 5K RUN & FAMILY FUN WALK

Participant Guide ANGELS AMONG US 5K RUN & FAMILY FUN WALK Participant Guide The Participant Center is your communications and fundraising headquarters. Full of great features, this is where you can get up to the minute information about the event, customize your

More information

Xamarin.Forms. Pages Building an Interface

Xamarin.Forms. Pages Building an Interface Xamarin.Forms Pages Building an Interface VS and Project Configuration VS: Tools Options only UWP only Android Solution Manage Nuget Packages for Solution Help About All projects Build Configuration Manager

More information

Persona and Point of View

Persona and Point of View User Story In many industries, products are not pre-build with a defined component list but customers get more and more control of how the product should look like. In this case for the Lighting industry

More information

Cloud Control Panel (CCP) User Guide

Cloud Control Panel (CCP) User Guide Cloud Control Panel (CCP) User Guide Version 1.0: 01.01.11 Copyright 2011 DNS Europe Ltd. All rights reserved. Cloud Control Panel (CCP) User Guide v1.0 Table of Contents 1 Introduction 3 1.1 Intended

More information

Microsoft CSharp

Microsoft CSharp Microsoft 70-511-CSharp Windows Apps Dev Microsoft.NET Framework 4 Download Full Version : https://killexams.com/pass4sure/exam-detail/70-511-csharp QUESTION: 59 You are developing a Windows Presentation

More information

PASS4TEST. IT Certification Guaranteed, The Easy Way! We offer free update service for one year

PASS4TEST. IT Certification Guaranteed, The Easy Way!  We offer free update service for one year PASS4TEST \ http://www.pass4test.com We offer free update service for one year Exam : C_THR82_1608 Title : SAP Certified Application Associate - SAP SuccessFactors Performance and Goal Management Q3/2016

More information

Creating Apps Using ArcGIS Online Templates. Matt Kennedy

Creating Apps Using ArcGIS Online Templates. Matt Kennedy Creating Apps Using ArcGIS Online Templates Matt Kennedy Topics we will cover The publishing process Before you publish Where apps live Breakdown of apps Publishing web app templates The steps for publishing

More information

MAKE NODEJS APIs GREAT WITH TYPESCRIPT

MAKE NODEJS APIs GREAT WITH TYPESCRIPT MAKE NODEJS APIs GREAT WITH TYPESCRIPT ABOUT ME I really like my work, software engineering never makes me bored, always keeps in learning and improving mood. dmytro.zharkov@gmail.com http://bit.ly/2fam3lr

More information

Blog Pro for Magento 2 User Guide

Blog Pro for Magento 2 User Guide Blog Pro for Magento 2 User Guide Table of Contents 1. Blog Pro Configuration 1.1. Accessing the Extension Main Setting 1.2. Blog Index Page 1.3. Post List 1.4. Post Author 1.5. Post View (Related Posts,

More information

Developing for Mobile Devices Lab (Part 1 of 2)

Developing for Mobile Devices Lab (Part 1 of 2) Developing for Mobile Devices Lab (Part 1 of 2) Overview Through these two lab sessions you will learn how to create mobile applications for Windows Mobile phones and PDAs. As developing for Windows Mobile

More information

This walkthrough assumes you have completed the Getting Started walkthrough and the first lift and shift walkthrough.

This walkthrough assumes you have completed the Getting Started walkthrough and the first lift and shift walkthrough. Azure Developer Immersion In this walkthrough, you are going to put the web API presented by the rgroup app into an Azure API App. Doing this will enable the use of an authentication model which can support

More information

EL-USB-RT API Guide V1.0

EL-USB-RT API Guide V1.0 EL-USB-RT API Guide V1.0 Contents 1 Introduction 2 C++ Sample Dialog Application 3 C++ Sample Observer Pattern Application 4 C# Sample Application 4.1 Capturing USB Device Connect \ Disconnect Events 5

More information

XNA 4.0 RPG Tutorials. Part 3. Even More Core Game Components

XNA 4.0 RPG Tutorials. Part 3. Even More Core Game Components XNA 4.0 RPG Tutorials Part 3 Even More Core Game Components I'm writing these tutorials for the new XNA 4.0 framework. The tutorials will make more sense if they are read in order. You can find the list

More information

CPSC Tutorial 9 Blend & Animations

CPSC Tutorial 9 Blend & Animations CPSC 481 - Tutorial 9 Blend & Animations (based on previous tutorials by Alice Thudt, Fateme Rajabiyazdi, David Ledo, Brennan Jones, and Sowmya Somanath) Today Blend & Animations Using Blend Hands on example

More information

Week 7: NavigationView Control Exercise

Week 7: NavigationView Control Exercise BCIS 4650 Week 7: NavigationView Control Exercise BUILD THE UI FIRST (ALWAYS). ================================================================================================ 1. Start with a New Project

More information

Guidebook is currently supported as an app on the devices listed in this support article.

Guidebook is currently supported as an app on the devices listed in this support article. Step 1: How to Download Guidebook The steps below will give you access to the Guidebook app. If you have received instructions to download a different app, please refer to those instructions! To download

More information

Walkthrough Using the New CLR Interop Feature of Microsoft Dynamics AX

Walkthrough Using the New CLR Interop Feature of Microsoft Dynamics AX Walkthrough Using the New CLR Interop Feature of Microsoft Dynamics AX Walkthrough Using the New CLR Interop Feature of Microsoft Dynamics AX Lab Manual Table of Contents Lab 1: CLR Interop... 1 Lab Objective...

More information

JPF Report System and Model Classes EECS https://wiki.eecs.yorku.ca/course_archive/ /w/4315/

JPF Report System and Model Classes EECS https://wiki.eecs.yorku.ca/course_archive/ /w/4315/ JPF Report System and Model Classes EECS 4315 https://wiki.eecs.yorku.ca/course_archive/2016-17/w/4315/ Today s Plan XML JPF Report System Implementing a PublisherExtension Parameterizing a Listener Model

More information

Brianna Nelson Updated 6/30/15 HOW TO: Docs, Sheets, Slides, Calendar, & Drive. English

Brianna Nelson Updated 6/30/15 HOW TO: Docs, Sheets, Slides, Calendar, & Drive. English Brianna Nelson Updated 6/30/15 HOW TO: Docs, Sheets, Slides, Calendar, & Drive English ABOUT Use this guide to write papers, create spreadsheets, give presentations, manage your time, and save your files

More information

If you are looking to speak with someone via voice, check out our Member TeamSpeak!

If you are looking to speak with someone via voice, check out our Member TeamSpeak! Discord is a social text platform that offers BVA members a supplementary means of connecting. The server is available on an optional basis, with no requirement to use Discord to communicate with ATC or

More information