25

Blaine Wastell Program Manager Microsoft Session Codedownload.microsoft.com/download/f/4/3/f43a79b1-707a-4670-8639-… · UI Composition Patterns ... Separate Classes/Services. Multi-Targeting

  • Upload
    others

  • View
    3

  • Download
    0

Embed Size (px)

Citation preview

Page 1: Blaine Wastell Program Manager Microsoft Session Codedownload.microsoft.com/download/f/4/3/f43a79b1-707a-4670-8639-… · UI Composition Patterns ... Separate Classes/Services. Multi-Targeting
Page 2: Blaine Wastell Program Manager Microsoft Session Codedownload.microsoft.com/download/f/4/3/f43a79b1-707a-4670-8639-… · UI Composition Patterns ... Separate Classes/Services. Multi-Targeting

Blaine WastellProgram ManagerMicrosoftSession Code:

Page 3: Blaine Wastell Program Manager Microsoft Session Codedownload.microsoft.com/download/f/4/3/f43a79b1-707a-4670-8639-… · UI Composition Patterns ... Separate Classes/Services. Multi-Targeting

AgendaWhat Is Prism and What Does It Do?

Client Application Challenges

What’s In The Box?

Modularity Patterns

UI Composition Patterns

Separated Presentation Patterns

Commanding & Eventing Patterns

Multi-Targeting

Sharing Code Between WPF And Silverlight

Page 4: Blaine Wastell Program Manager Microsoft Session Codedownload.microsoft.com/download/f/4/3/f43a79b1-707a-4670-8639-… · UI Composition Patterns ... Separate Classes/Services. Multi-Targeting

The Challenge

Page 5: Blaine Wastell Program Manager Microsoft Session Codedownload.microsoft.com/download/f/4/3/f43a79b1-707a-4670-8639-… · UI Composition Patterns ... Separate Classes/Services. Multi-Targeting

The Solution

Page 6: Blaine Wastell Program Manager Microsoft Session Codedownload.microsoft.com/download/f/4/3/f43a79b1-707a-4670-8639-… · UI Composition Patterns ... Separate Classes/Services. Multi-Targeting

The Problem:Client Applications are Challenging!

Beyond the Bling – How To Make The ApplicationDynamic, Customizable, Extensible, Testable?

The Solution:Break App Into Pieces

Manage Dependencies Between Pieces

Re-assemble App From Pieces

Prism – Patterns For Composite Client Apps

Composite Client Applications

Page 7: Blaine Wastell Program Manager Microsoft Session Codedownload.microsoft.com/download/f/4/3/f43a79b1-707a-4670-8639-… · UI Composition Patterns ... Separate Classes/Services. Multi-Targeting

Prism – Composite Client Application Guidance for WPF and Silverlight

LibraryReference ImplementationDocumentationQuick-Starts & How-To’sCommunity – CodePlex

Prism 1.0 – WPFReleased July 2008

Prism 2.0 – WPF & SilverlightReleased Feb 2009

Prism – What’s In The Box?

Page 8: Blaine Wastell Program Manager Microsoft Session Codedownload.microsoft.com/download/f/4/3/f43a79b1-707a-4670-8639-… · UI Composition Patterns ... Separate Classes/Services. Multi-Targeting

Reference Implementation

Page 9: Blaine Wastell Program Manager Microsoft Session Codedownload.microsoft.com/download/f/4/3/f43a79b1-707a-4670-8639-… · UI Composition Patterns ... Separate Classes/Services. Multi-Targeting

The StockTrader Reference Implementation

Page 10: Blaine Wastell Program Manager Microsoft Session Codedownload.microsoft.com/download/f/4/3/f43a79b1-707a-4670-8639-… · UI Composition Patterns ... Separate Classes/Services. Multi-Targeting

Prism Core Concepts

Page 11: Blaine Wastell Program Manager Microsoft Session Codedownload.microsoft.com/download/f/4/3/f43a79b1-707a-4670-8639-… · UI Composition Patterns ... Separate Classes/Services. Multi-Targeting

Modules

Unit Of Application AssemblyCollection of Related ComponentsFeature, Services, Views, Data AccessSlice & Dice: Mandatory, Optional, Role Specific

Unit Of DevelopmentIndependent DevelopmentIndependent Testing

Unit Of DeploymentUp-Front, Background or On-Demand

Page 12: Blaine Wastell Program Manager Microsoft Session Codedownload.microsoft.com/download/f/4/3/f43a79b1-707a-4670-8639-… · UI Composition Patterns ... Separate Classes/Services. Multi-Targeting

ModulesModule Discovery

Pluggable Catalogs

Module LoadingBackground or On-Demand

Module Loader

Page 13: Blaine Wastell Program Manager Microsoft Session Codedownload.microsoft.com/download/f/4/3/f43a79b1-707a-4670-8639-… · UI Composition Patterns ... Separate Classes/Services. Multi-Targeting

Modules and Catalogs

Page 14: Blaine Wastell Program Manager Microsoft Session Codedownload.microsoft.com/download/f/4/3/f43a79b1-707a-4670-8639-… · UI Composition Patterns ... Separate Classes/Services. Multi-Targeting

Shell – Application Host Window

Regions – Named Areas For View Placement

Views – Module UI & Presentation Logic

View Injection Visual Composition

UI Composition

Region Region

Region

<ContentControlRegionManager.RegionName=“DetailsRegion” />

IPositionPresentationModel presentationModel = …;

IRegion mainRegion =regionManager.Regions[ "MainRegion" ];

mainRegion.Add( presentationModel.View );

<ItemsControlRegionManager.RegionName="MainRegion">

Page 15: Blaine Wastell Program Manager Microsoft Session Codedownload.microsoft.com/download/f/4/3/f43a79b1-707a-4670-8639-… · UI Composition Patterns ... Separate Classes/Services. Multi-Targeting

UI Composition

View Discovery Visual Composition:Less Complex

Black Box ‘App Assembly’ Composition

Select Views & Pull into Region

Region Region

Region<ContentControl

RegionManager.RegionName="DetailsRegion”/>

<ItemsControlRegionManager.RegionName="MainRegion”/>

regionManager.RegisterViewWithRegion("MainRegion", typeof( MainView ) );

Page 17: Blaine Wastell Program Manager Microsoft Session Codedownload.microsoft.com/download/f/4/3/f43a79b1-707a-4670-8639-… · UI Composition Patterns ... Separate Classes/Services. Multi-Targeting

Commands and EventsDelegate & Composite Commands

Simplified Command Handling

Event AggregatorLoosely Coupled Pub/Sub Events

Module B

CustomerPresenter

Module A

OrderPresenter

EventAggregator

Page 18: Blaine Wastell Program Manager Microsoft Session Codedownload.microsoft.com/download/f/4/3/f43a79b1-707a-4670-8639-… · UI Composition Patterns ... Separate Classes/Services. Multi-Targeting

Separated Presentation

Presenter

Model

View

PresentationModel

ModelView

Prism 1.0Supervising Presenter

Presentation Model

Prism 2.0More Concrete Guidance on Using These Patterns…

“Model-View-ViewModel”

How To Be Designer Friendly

Modeling Presentation State (Not UI State)

Ultra Thin Views – Data Templates

Page 19: Blaine Wastell Program Manager Microsoft Session Codedownload.microsoft.com/download/f/4/3/f43a79b1-707a-4670-8639-… · UI Composition Patterns ... Separate Classes/Services. Multi-Targeting

WP

FSI

LVER

LIG

HT

CLR - Silverlight CLR Desktop

BCL BCL

BROWSER DESKTOP

Multi-TargetingUser Experiences

Desktop – In the Office, Full Functionality, Offline Capable

RIA – Out of the Office, Functional Subset, Online

How to Share Code & Components?

Controllers

Models

Presenters

Views

Models

Controllers

Presenters

Views

Page 20: Blaine Wastell Program Manager Microsoft Session Codedownload.microsoft.com/download/f/4/3/f43a79b1-707a-4670-8639-… · UI Composition Patterns ... Separate Classes/Services. Multi-Targeting

Multi-Targeting: StrategiesStart With LCD – Silverlight

Separated Presentation Strategies

Single Source, Cross Compiled

Links and Parallel Project Structures

If Not:

#IF SILVERLIGHT

Partial Classes

Partial Methods

Separate Classes/Services

Page 21: Blaine Wastell Program Manager Microsoft Session Codedownload.microsoft.com/download/f/4/3/f43a79b1-707a-4670-8639-… · UI Composition Patterns ... Separate Classes/Services. Multi-Targeting

Multi-Targeting

Page 22: Blaine Wastell Program Manager Microsoft Session Codedownload.microsoft.com/download/f/4/3/f43a79b1-707a-4670-8639-… · UI Composition Patterns ... Separate Classes/Services. Multi-Targeting

SummaryPrism 1.0

Library of Patterns for Enterprise Client AppsTargets WPF on the Desktop

Prism 2.0Extends Prism to Silverlight RIA ApplicationsExtended Patterns for UI Composition, Separated Presentation, ModularityMulti-Targeting – Extend user experience & re-use code and components

Download from MSDN & CodePlex

Send us feedback & ideas for Prism 3.0!

Page 23: Blaine Wastell Program Manager Microsoft Session Codedownload.microsoft.com/download/f/4/3/f43a79b1-707a-4670-8639-… · UI Composition Patterns ... Separate Classes/Services. Multi-Targeting

Where Can You Find Prism

www.microsoft.com/prism

www.codeplex.com/prism

http://blogs.msdn.com/blaine

Page 25: Blaine Wastell Program Manager Microsoft Session Codedownload.microsoft.com/download/f/4/3/f43a79b1-707a-4670-8639-… · UI Composition Patterns ... Separate Classes/Services. Multi-Targeting

© 2009 Microsoft Corporation. All rights reserved. Microsoft, Windows, Windows Vista and other product names are or may be registered trademarks and/or trademarks in the U.S. and/or other countries.The information herein is for informational purposes only and represents the current view of Microsoft Corporation as of the date of this presentation. Because Microsoft must respond to changing market conditions, it should not be interpreted to be a commitment on the part of Microsoft, and Microsoft cannot guarantee the accuracy of any information provided after the date of this presentation. MICROSOFT MAKES NO WARRANTIES, EXPRESS,

IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.