reklama - zainteresowany?

MVVM Survival Guide for Enterprise Architectures in Silverlight and WPF. If you’re using Silverlight and WPF, then employing the MVVM pattern can make a powerful difference to your projects, reducing code and bugs in one. This book is an invaluable - Helion

MVVM Survival Guide for Enterprise Architectures in Silverlight and WPF. If you’re using Silverlight and WPF, then employing the MVVM pattern can make a powerful difference to your projects, reducing code and bugs in one. This book is an invaluable
ebook
Autor: Muhammad Shujaat Siddiqi, Ryan Vice
TytuÅ‚ oryginaÅ‚u: MVVM Survival Guide for Enterprise Architectures in Silverlight and WPF. If you’re using Silverlight and WPF, then employing the MVVM pattern can make a powerful difference to your projects, reducing code and bugs in one. This book is an invaluable
ISBN: 9781849683432
stron: 490, Format: ebook
Data wydania: 2012-08-03
Księgarnia: Helion

Cena książki: 159,00 zł

Dodaj do koszyka MVVM Survival Guide for Enterprise Architectures in Silverlight and WPF. If you’re using Silverlight and WPF, then employing the MVVM pattern can make a powerful difference to your projects, reducing code and bugs in one. This book is an invaluable

MVVM (Model View View Model) is a Microsoft best practices pattern for working in WPF and Silverlight that is highly recommended by both Microsoft and industry experts alike. This book will look at the reasons for the pattern still being slow to become an industry standard, addressing the pain points of MVVM. It will help Silverlight and WPF programmers get up and running quickly with this useful pattern.MVVM Survival Guide for Enterprise Architectures in Silverlight and WPF will help you to choose the best MVVM approach for your project while giving you the tools, techniques, and confidence that you will need to succeed. Implementing MVVM can be a challenge, and this book will walk you through the main issues you will come across when using the pattern in real world enterprise applications.This book will help you to improve your WPF and Silverlight application design, allowing you to tackle the many challenges in creating presentation architectures for enterprise applications. You will be given examples that show the strengths and weaknesses of each of the major patterns. The book then dives into a full 3 tier enterprise implementation of MVVM and takes you through the various options available and trade-offs for each approach. During your journey you will see how to satisfy all the demands of modern WPF and Silverlight enterprise applications including scalability, testability, extensibility, and blendability.Complete your transition from ASP.NET and WinForms to Silverlight and WPF by embracing the new tools of these platforms, and the new design style that they allow for. MVVM Survival Guide for Enterprise Architectures in Silverlight and WPF will get you up to speed and ready to take advantage of this powerful new presentation platform.

Dodaj do koszyka MVVM Survival Guide for Enterprise Architectures in Silverlight and WPF. If you’re using Silverlight and WPF, then employing the MVVM pattern can make a powerful difference to your projects, reducing code and bugs in one. This book is an invaluable

 

Osoby które kupowaÅ‚y "MVVM Survival Guide for Enterprise Architectures in Silverlight and WPF. If you’re using Silverlight and WPF, then employing the MVVM pattern can make a powerful difference to your projects, reducing code and bugs in one. This book is an invaluable", wybieraÅ‚y także:

  • Windows Media Center. Domowe centrum rozrywki
  • Ruby on Rails. Ćwiczenia
  • DevOps w praktyce. Kurs video. Jenkins, Ansible, Terraform i Docker
  • Przywództwo w Å›wiecie VUCA. Jak być skutecznym liderem w niepewnym Å›rodowisku
  • Scrum. O zwinnym zarzÄ…dzaniu projektami. Wydanie II rozszerzone

Dodaj do koszyka MVVM Survival Guide for Enterprise Architectures in Silverlight and WPF. If you’re using Silverlight and WPF, then employing the MVVM pattern can make a powerful difference to your projects, reducing code and bugs in one. This book is an invaluable

Spis treści

MVVM Survival Guide for Enterprise Architectures in Silverlight and WPF. If you’re using Silverlight and WPF, then employing the MVVM pattern can make a powerful difference to your projects, reducing code and bugs in one. This book is an invaluable resource for serious developers eBook -- spis treÅ›ci

  • MVVM Survival Guide for Enterprise Architectures in Silverlight and WPF
    • Table of Contents
    • MVVM Survival Guide for Enterprise Architectures in Silverlight and WPF
    • Credits
    • Foreword
    • About the Authors
    • About the Reviewer
    • www.PacktPub.com
      • Support files, eBooks, discount offers and more
        • Why Subscribe?
        • Free Access for Packt account holders
        • Instant Updates on New Packt Books
    • Preface
      • What this book covers
      • What you need for this book
      • Who this book is for
      • Conventions
      • Reader feedback
      • Customer support
        • Downloading the example code
        • Errata
        • Piracy
        • Questions
    • 1. Presentation Patterns
      • The Project Billing sample application
        • Types of state
      • History of presentational patterns
        • Monolithic design
          • The problems with monolithic design
            • Code maintenance
            • Code structure
            • Code testability
        • Data service stub
      • Monolithic Project Billing sample
        • ProjectsView
          • Initialization
          • Event handlers
          • Helpers
        • Running the sample
          • Takeaways
            • Poor testability
            • Poor extensibility and code reuse
        • Rapid application development
          • RAD Project Billing sample
          • Takeaways
        • MVC
          • View
          • Controller
          • Model
        • Layered design
          • The layers
            • Presentation layer
            • Business layer
            • Data layer
        • MVC with layered design
        • MVC Project Billing sample
          • Model
          • Controller
          • View
            • Initialization
            • Event handlers
            • Helpers
            • MainWindow
          • How it works
          • Takeaways
          • Memory leaks
        • MVP
        • MVP Project Billing sample
          • Model
          • View
            • Event handlers
            • Public methods
            • Helpers
          • Presenter
            • Event handlers
            • Helpers
          • Main window
          • How it works
          • Takeaways
      • Summary
    • 2. Introduction to MVVM
      • History
      • Structure
        • Pure MVVM
        • View
        • View Model
      • WPF and Silverlight enablers
        • Dependency Properties
          • Dependency property inheritance
            • Data context
            • Attached behavior pattern
        • Rich data binding
          • INotifyCollectionChanged and ObservableCollection<>
          • Automatic dispatching
        • Triggers
        • Styles
        • Control Templates
        • Data templates
        • Commands
      • MVVM project billing sample
        • MVVM design
          • View Models
            • ProjectsViewModel
            • ProjectViewModel
          • Model
        • Code
          • ProjectsModel
          • ProjectViewModel
          • ProjectsViewModel
          • WPF UI
            • ProjectsView
            • MainWindow
          • Silverlight UI
            • Porting assemblies to Silverlight
            • ProjectsView
            • MainPage
      • Benefits of MVVM
        • MVVM and humble views
      • Issues and pain points of MVVM
      • MVVM Light
      • Summary
    • 3. Northwind Foundations
      • Northwind requirements
      • Presentation tier foundation
        • Locator pattern
      • Data access tier
      • Listing the customers
        • Unit testing getting customers
          • Using an isolation framework
      • Adding tabs
      • Viewing customer details
        • Viewing details for one customer
          • Testing CustomerDetailsViewModel
      • Wiring up the customer list box
        • Testing ShowCustomerDetails()
      • Summary
    • 4. NorthwindServices and Persistence Ignorance
      • Adding a Service Layer
      • Integrating the Service Layer
      • Persistence ignorance and custom models
        • Trade-offs of generated models
        • Adding persistence ignorance
          • Adding unit tests
      • Summary
    • 5. NorthwindCommands and User Inputs
      • Pure MVVM
      • Making it easier with frameworks
      • Updating customer details
        • Testing and updating customer details
      • Gestures, events, and commands
        • InputBindings
          • KeyBinding
          • MouseBinding
        • Using code behind
        • Event to command
          • Attached Behavior
          • Using MVVM Light
      • Summary
    • 6. NorthwindHierarchical View Model and IoC
      • Adding orders to customer details
        • Service layer
        • Application layer
        • Presentation layer
          • View Models
          • Views
        • Take aways
      • Viewing order details
        • ToolManager
        • Inversion of Control frameworks
          • IoC designs
            • Service Locator anti-pattern
            • IoC best practices
          • Adding an IoC container to Northwind
        • Order details
      • Summary
    • 7. Dialogs and MVVM
      • Should we make a compromise?
      • Dialog service
        • Using DataTemplates with DialogService
        • Convention over configuration
      • Mediators
      • Attached behaviors
      • Summary
    • 8. Workflow-based MVVM Applications
      • WF for business rules execution
        • Handling delays in rules execution
          • Using WorkflowInvoker in background thread
          • Using WorkflowApplication
      • WF for controlling application flow
      • Summary
    • 9. Validation
      • Validations and dependency properties
      • Error templates
      • Validation in MVVM-based applications
        • Validation rules
          • Using validation rules
          • Specializing validation rulessupporting parameters
          • Validation rules and converters
          • Validation mechanism in WPF and Silverlight
        • IDataErrorInfo
          • Validation states
            • Providing a summary validation error
            • Invalidating multiple fields
          • Limitations and gotchas
        • INotifyDataErrorInfo
        • Enterprise library validation application block
        • Complex business rules
      • Error notifications
        • Error message box
        • Highlighting fields
        • Error messages in the tooltip
        • Error messages beside the control
        • Validation summary pane
        • Flip controls
      • Summary
    • 10. Using Non-MVVM Third-party Controls
      • Using attached behaviors
      • Using binding reflector
      • readonly CLR properties (with no change notification support)
        • Using .NET 4.0 dynamic
      • Using MVVM adapters
      • Summary
    • 11. MVVM Application Performance
      • Asynchronous binding
      • Asynchronous View Model construction
      • Priority binding
      • Virtualization and paging
      • Using BackgroundWorker
      • Targeting system configuration
      • Event Throttling
      • Lazy Initialization
      • Summary
    • A. MVVM Frameworks
    • B. Binding at a Glance
      • Basics
      • Validation
        • ValidationRules
        • IDataErrorInfo
        • INotifyDataErrorInfo [.net 4.5]
        • Enterprise Library 5.0 Validation Application Block
        • Windows WF
        • Validation.ErrorTemplate
      • Static properties/fields
      • Executing code in DataContext
      • Binding to DataContext[DC]
      • Resources
        • Types with default constructor
        • XmlDataProvider
        • ObjectDataProvider
      • Binding to resource
        • Static resource
        • Dynamic resource
      • Updating source
        • Binding.UpdateSourceTrigger
        • Binding.Delay: [.net 4.5] [Binding.Mode:TwoWay / OneWayToSource ]
      • Mode [Binding.Mode] [T:Target, S:Source]
      • Binding to other elements in the view
        • ElementName
        • RelativeSource
      • Conversion
        • Binding.StringFormat [SF]
        • Converter [C]
      • Performance
        • Async binding
        • ObjectDataProvider.IsAsynchronous
        • PriorityBinding
    • Index

Dodaj do koszyka MVVM Survival Guide for Enterprise Architectures in Silverlight and WPF. If you&#x2019;re using Silverlight and WPF, then employing the MVVM pattern can make a powerful difference to your projects, reducing code and bugs in one. This book is an invaluable

Code, Publish & WebDesing by CATALIST.com.pl



(c) 2005-2024 CATALIST agencja interaktywna, znaki firmowe należą do wydawnictwa Helion S.A.