An Overview Of Wpf

Loading...

Flash Player 9 (or above) is needed to view presentations.
We have detected that you do not have it on your computer. To install it, go here.

0 comments

Post a comment

    Post a comment
    Embed Video
    Edit your comment Cancel

    1 Favorite

    An Overview Of Wpf - Presentation Transcript

    1. Windows Presentation Foundation Clint Edmonson Architect Evangelist [email_address] blog: www.notsotrivial.net twitter: @clinted
    2. What is Windows Presentation Foundation?
    3. “ WPF”
    4. Why Was WPF Created?
    5. UX
    6. Design is Inevitable “ Questions about whether design is necessary or affordable are quite beside the point: design is inevitable . The alternative to good design is bad design , not no design at all.” Douglas Martin designer
    7.  
    8.  
    9.  
    10.  
    11. A Metaphor
    12.  
    13. “ It just works!”
    14. Another Metaphor
    15.  
    16.  
    17.  
    18.  
    19.  
    20.  
    21.  
    22. How Does WPF Solve This Problem?
    23. Developers and designers exist in two different time-space continuums
    24.  
    25. Designer/developer experience
        • designers & developers:
        • Speak the same language
      designers design
        • designers & developers:
        • Speak different languages
      developers add business logic The new way for designers and developers to work together designer developer
    26. Declarative & Programming Development
      • Easily toolable, declarative markup
      • Code and content are separate
      • Can be rendered in the browser / standalone application
      <Button Width=&quot;100&quot;> OK <Button.Background> LightBlue </Button.Background> </Button> XAML Button b1 = new Button(); b1.Content = &quot;OK&quot;; b1.Background = new SolidColorBrush(Colors.LightBlue); b1.Width = 100; C# Dim b1 As New Button b1.Content = &quot;OK&quot; b1.Background = New _ SolidColorBrush(Colors.LightBlue) b1.Width = 100 VB.NET
    27. Features Of WPF?
    28. - Rich, mature control set - TextBox, Checkbox, ComboBox, Border, MediaElement - Animation, triggers, timelines - Styles and embedded resources - Layout panels - Databinding - 2D, 3D and imaging - ClearType and antialiasing - Interoperability - Document services
    29. Property Engine Input / Eventing System .NET Framework 2.0 Desktop Windows Manager Media Integration Layer DirectX Windows Vista Display Driver (LDDM) Windows Media Foundation Composition Engine Print Spooler Managed Unmanaged Application Services Deployment Services Databinding USER INTERFACE SERVICES XAML Accessibility Property System Input & Eventing BASE SERVICES DOCUMENT SERVICES Packaging Services XPS Documents Animation 2D 3D Audio Imaging Text Video Effects Composition Engine MEDIA INTEGRATION LAYER Controls Layout Windows Presentation Foundation XPS Viewer
    30. When Should I Use WPF?
    31. You should be in a rich-client application environment when…
    32. You want your client to be front and center with your customers
    33. You want to take advantage of local system resources
    34. You’re building a ‘widget’ application
    35. You need to integrate closely with the desktop
    36. You need complete control over the entire user interface or brand
    37. What are my deployment options?
    38. Stand-alone installation
      • Uses standard install tools
      • Installed locally to Program Files
      • Available to all users on the machine
      • Full access to local computer and network resources
      • Windows OS only
    39. XML Browser App (XBAP)
      • Install and run apps by clicking a URI
      • WPF application docked inside the browser window
      • Saved to isolated storage on local machine
      • Must be signed
      • Always auto updated
      • Must be run while online
      • Windows OS only
      • .NET 3.0 and up
      • Full framework available (depending on trust levels)
      • Firefox support added in .NET 3.5 & Firefox 3
    40. Click-Once
      • Install and run apps by clicking a URI
      • May be installed locally or run from web every time
      • Installed on a per-user basis
      • Must be signed
      • Saved to isolated storage on local machine
      • Supports automatic updating
      • Can run when offline
      • Windows OS only
      • .NET 2.0 and up
      • Full framework available (depending on trust levels)
      • Firefox support added in .NET 3.5 & Firefox 3
    41. Who’s Using WPF?
    42.  
    43.  
    44.  
    45.  
    46.  
    47. How Do I Build WPF Applications?
    48.  
    49. Demo: A Walk Through WPF Development in Expression Blend 2 and Visual Studio 2008
    50. Whether you are designing rich standards-based websites, ultimate experiences on the desktop, or managing digital assets and content, Expression professional design tools give you the flexibility and freedom to bring your vision to reality.
    51. Expression Blend
      • Your Sandbox Just Got Bigger
        • Design stunning Windows applications that blend the best of the web and desktop
        • Collaborate with developers using Visual Studio for a new level of designer-developer productivity
      • Art, Meet Science
        • Mix a full spectrum of design elements including vector art, pixel images, high quality text, video, and real 3D content
        • Full toolbox of advanced controls and containers for building compelling user interfaces
      • Go Beyond the Browser
        • Harness the full power of Windows Vista, from desktop to the browser
        • Deliver the ultimate user experiences with rich graphics, animation, and interactive UI
    52. Expression Design
      • Expand Your Portfolio
        • Design UI elements for Windows applications
        • The perfect companion for Expression Blend
      • Designed for Design
        • Modern UI built from the ground up with the professional designer in mind
        • Powerful vector drawing tools and non-destructive effects
      • Your Vision, Uncompromised
        • Ensure design integrity thanks to end-to-end XAML workflow
        • Export your visual designs as XAML code, ready to use in interface design and control skinning
    53. Expression Media
      • Tame Your Media
        • Manage all of your media assets in one place with extensive annotations, metadata, search, and browsing (even while offline)
        • Support for over 100 different media formats and file types, including images, fonts, and video
      • Your Workflow, Enhanced
        • Rename, convert, tag, and batch process files quickly, and use powerful search to find and retrieve the files you need
        • Edit images and keep track of changes with version control and folder watching
      • Presentation is Everything
        • Export files to multiple formats, build slide shows and videos, or create professional Web galleries
        • Includes Expression Media Encoder , for conversion, enhancement, and compression of rich Web video
    54. Expression Media Encoder
      • Tame your Video Compression Workflow
        • Batch import WMV, AVI, MPEG, QT, and more via plug-ins.
        • Integrate easily into existing workfow
        • Powerful command-line encoder for application and server-based integration
      • Enhance Effortlessly
        • Trim, crop, resize, add bumpers, markers, overlays, and more to your video
        • Professional effects and alpha compositing support
        • Extensible metadata management for asset tracking
      • Publish for the Web and beyond
        • Stunning quality with Emmy® Award winning Windows Media & SMPTE VC-1 compression
        • Customizable publishing profiles for desktop, Web, and devices.
        • Template-based “WPF/E” publishing for cross-platform, cross-browser playback
      a feature of Expression Media
    55. Where Can I Learn More?
    56. www.microsoft.com/ design www.microsoft.com/ expression Where to learn more
    57. WindowsClient.net/GetStarted Where to learn more
    58. Nibblestutorials.net Where to learn more
    59. www.visitmix.com
    60. Windows Presentation Foundation Clint Edmonson Architect Evangelist [email_address] blog: www.notsotrivial.net twitter: @clinted
    61.  

    + Clint EdmonsonClint Edmonson, 8 months ago

    custom

    929 views, 1 favs, 1 embeds more stats

    More info about this document

    © All Rights Reserved

    Go to text version

    • Total Views 929
      • 919 on SlideShare
      • 10 from embeds
    • Comments 0
    • Favorites 1
    • Downloads 21
    Most viewed embeds
    • 10 views on http://www.notsotrivial.net

    more

    All embeds
    • 10 views on http://www.notsotrivial.net

    less

    Flagged as inappropriate Flag as inappropriate
    Flag as inappropriate

    Select your reason for flagging this presentation as inappropriate. If needed, use the feedback form to let us know more details.

    Cancel
    File a copyright complaint
    Having problems? Go to our helpdesk?

    Categories