Presentation is loading. Please wait.

Presentation is loading. Please wait.

Jump into WPF! Tim Huckaby CEO, InterKnowlogy Microsoft RD & MVP Level: Beginner / Intermediate.

Similar presentations


Presentation on theme: "Jump into WPF! Tim Huckaby CEO, InterKnowlogy Microsoft RD & MVP Level: Beginner / Intermediate."— Presentation transcript:

1 Jump into WPF! Tim Huckaby CEO, InterKnowlogy Microsoft RD & MVP Level: Beginner / Intermediate

2 Jump into WPF! Tim Huckaby CEO, InterKnowlogy Microsoft RD & MVP Level: Beginner / Intermediate

3 3 Abstract: You’ve seen the beautiful animated user interfaces; you have seen the gratuitous animations; you’ve seen the 3D. You might not be doing it now, but you will eventually – you’ll be building rich client applications in WPF. It’s just a matter of time. This session was designed as an introduction to WPF to get you over the big learning curve that has frustrated many and well on your way to building great applications in WPF. In this session, you’ll learn how to use Visual Studio to help build WPF applications, of course. But you’ll also learn about a number of tools you’ll use to build WPF applications. This is a rare place in the.NET stack where VS doesn’t do it all. In fact, it doesn’t even come close. So we’ll show you tools like those from the Expression Suite, along with some XAML design, syntax and rendering tools. WPF is manifested in three major application platforms (Windows Client, Silverlight, and Microsoft Surface) and all will be covered in this session at some level.

4 About… InterKnowlogy (www.InterKnowlogy.com) Tim Huckaby, CEO (TimHuck@InterKnowlogy.com)TimHuck@InterKnowlogy.com –Custom Application Development / Consulting / Software & Systems Engineering Firm headquartered in Carlsbad, CA –Design, Architect, Build and Deploy Enterprise Class Applications –Industry Experts: Most of the employees are published, MVPs, Speakers, etc. Microsoft.NET Application development since 2000! Microsoft.NET Rich Client Pioneers / industry leaders Information Worker Solutions (VSTO & SharePoint) Integration / Messaging, B2B / B2C, Wireless / Mobility Leading Edge: Surface, WPF, Silverlight, Win7 touch, SharePoint, VSTO Cutting Edge Solutions on emerging Microsoft technologies Largest Client: Microsoft

5 Session Agenda Quick Demo of the Reference Application WPF, XAML, and Declarative Programming Layout and Controls Events and Commands Working with Data Adding Style To Your Application Summary

6 6 Reference Application Demo Tim Huckaby CEO, InterKnowlogy Microsoft RD & MVP Project Structure XAML and Code Behind Working with Data Resources

7 WPF and Declarative Programming XAML replaces code Attributes control Layout and Style Event handlers wired-up in XAML Declarative Data Binding

8 Sample XAML Runs in a WPF Application: <Window x:Class="WpfApplication2.Window1“ xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="Window1" Height="300" Width="300"> Hello World Runs in the Browser: <Canvas xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> Hello World

9 Layout and Controls Layout Basics Controls

10 Layout Basics Panels UI Element Positioning

11 Panels StackPanel Arranges child elements into a single line that can be oriented horizontally or vertically. WrapPanel Positions child elements in sequential position from left to right, breaking content to the next line at the edge of the containing box. DockPanel An area where you can arrange child elements either horizontally or vertically, relative to each other. Grid A flexible grid area that consists of columns and rows. Canvas An area within which you can explicitly position child elements by using coordinates that are relative to the Canvas area.

12 Container Controls Canvas DockPanel DocumentViewer Frame Grid StackPanel Tab

13 Positioning Horizontal and Vertical Alignment Margin Padding Margin Text Block Padding

14 Controls Standard Common Controls Menu and Toolbar Controls Container Controls New Controls

15 Standard Common Controls TextBox Button CheckBox / ComboBox Image Label ListBox Password

16 Menu and Toolbar Controls Menu Context Menu StatusBar ToolBar ToolBarTray

17 Controls unique to WPF TextBlock Expander InkCanvas InkPresenter DocumentViewer UniformGrid

18 18 Screen Layout Demo Tim Huckaby CEO, InterKnowlogy Microsoft RD & MVP

19 Events and Commands Standard.NET Events Routed Events Commands

20 Routed Events Bubbling –Starts at the current element and bubbles up to the current element’s parent and that elements parent and so on [MouseLeftButtonDown] Tunneling –Works opposite of bubbling and starts at the root element and works down to the originating element [PreviewMouseLeftButtonDown] Direct –Works like standard.NET event handling with only direct handlers being notified of events [Click]

21 Working with Events Halting Events Private void Grid_ButtonDown(object sender, RoutedEventArgs e) { //do something here e.Handled = true; } Determining the Target Private void Grid_ButtonDown(object sender, RoutedEventArgs e) { // who is the originator MessageBox.Show(((Control)e.OriginalSource).Name); }

22 Commands Logical action that can be invoke in several ways Based on the RoutedCommand Class Uses both event tunneling [PreviewExecuteEvent] and event bubbling [ExecuteEvent]

23 Standard Command Classes Class Command Types ApplicationCommands Commands common to almost all applications. Includes clipboard commands, undo and redo and document level operations (open,close,print,etc..) ComponentCommands Operations for moving through information such as scroll up and down, move to end, and text selection EditCommands Text editing commands such a bold, italic and alignment MediaCommands Media-playing operations such as transport (play,pause,etc..), volume control and track selection

24 24 Events and Commands Demo Tim Huckaby CEO, InterKnowlogy Microsoft RD & MVP

25 Working with Data Overview Simple Data Binding Complex Data Binding

26 Data Binding Simple Field level Data Binding Complex Data Binding to multiple controls at a time (Master/Detail/Detail) Client-Side Sorting and Filtering Support for binding to Objects, XML and Relational data sources

27 Simple Data Binding Simple Data Binding using Business Objects Support for two-way synchronization in simple objects via the INotifyPropertyChanged interface Implicit and Declarative binding via the DataContext

28 Complex Data Binding Binding to Lists Supports two-way data binding to list if list inherits from ObservableCollection Data Templates Sorting Filtering Master/Detail/Detail

29 29 Working with Data Demo Tim Huckaby CEO, InterKnowlogy Microsoft RD & MVP

30 Adding Style to Your Application Overview Resources Triggers

31 XAML Styles What are styles? Problems they address in WinForms 2.0 –Styling controls one at a time –Unnecessary Custom Control Creation Similarities to Cascading Style Sheets –Inline declaration –Page level declaration –Separate file declaration

32 Overview Cont. Contained in System.Windows.Style Main Properties –Key –TargetType –Setters (Property and Event)

33 Style Examples

34 Resources Static Resources –Loaded when Window or Page Loads –Leads to slower page loading –Changes to underlining values are not propagated Dynamic Resources –More overhead to allow for constant updates –Can only be used to set dependency properties –Can potentially improve Page and Window load time

35 Resource Dictionary Contains hash table of resources Great way to organize resources Resource.MergedDictionaries combines many different file based resources

36 Triggers Setters that are set based on one or more conditions Three Types of Triggers –Property – Invoked when the value of a dependency property changes –Data – Invoked when the value of a plain.NET property changes –Event – Invoked when a routed event changes

37 37 Adding Style to Your Application Tim Huckaby CEO, InterKnowlogy Microsoft RD & MVP

38 Summary Layout in WPF is flexible WPF has a rich set of controls Data Binding is rich & supports many data types Styles bring life to your applications The learning curve can be steep, but is worth it. Download all my resources and dedicate some time to learn.

39 WPF: Where to go Next Free Resources WindowsClient.net - this is the official Microsoft community portal for WPF development, and is chock full of great resources such as the... WindowsClient.net Learn WPF page - this page links to podcasts, labs, and the very popular "how do I?" videos Learn WPF page MIX University's WPF Bootcamp - this is a full 3-day video training course on WPF, in which expert instructors guide you from the surface into the depths of the technology stack MIX University's WPF Bootcamp

40 Where to go Next Books Windows Presentation Foundation Unleashed (WPF) by Adam Nathan, Daniel LehenbauerAdam NathanDaniel Lehenbauer Essential Windows Presentation Foundation (WPF) by Chris AndersonChris Anderson

41 Where to go Next Soon… Windows Presentation Foundation A Scenario-Based Approach by Billy Hollis “Early April…I hope…” B. Hollis, 12/7/07 “October…” B. Hollis, 6/3/08 April 5 th, 2009 Amazon

42 Tim Huckaby, InterKnowlogy More info on InterKnowlogy: ● www.InterKnowlogy.com Contact me: Tim Huckaby ● E-mail : TimHuck@InterKnowlogy.com or v-TimHu@Microsoft.com ● Phone: 760-444-8640 ● Blog : http://team.interknowlogy.com/blogs/timhuckaby http://team.interknowlogy.com/blogs/timhuckaby About Tim Huckaby… ● CEO, InterKnowlogy ● Microsoft ® Regional Director – Southern California ● Microsoft ®.NET Partner Advisory Council Founder / Member ● Microsoft ® MVP -.NET ● Microsoft ® Surface Partner Advisory Council ● INETA Speaker – International.NET Users Group Association ● Windows and.NET Magazine Advisory Board Member ●.NET Developers Journal Magazine Advisory Board Member ● Author / Speaker


Download ppt "Jump into WPF! Tim Huckaby CEO, InterKnowlogy Microsoft RD & MVP Level: Beginner / Intermediate."

Similar presentations


Ads by Google