SlideShare uma empresa Scribd logo
1 de 9
M-V-VM

Model View ViewModel for WPF
       (Design Pattern)
Highlights

Created By John Gossman (WPF and Silverlight
Architect at Microsoft)

This pattern is a simple and effective set of Guidelines
for Designing and Implementing a WPF application

Allows you to create a strong separation between
data, behavior and presentation (UI)
Uses

Databinding for 2 way communication between View
                (UI) and ViewModel

  Uses Command pattern (ICommand interface) for
communicating actions or events that happen on View
                       (UI)

  Dependency Properties alongwith Data Binding to
communicate data changes to and from the View (UI)
WPF MVVM Application Layers
What is View, Model and ViewModel?

View                               ViewModel                          Model
• represents the UI that the end   • is the abstraction of the View   • Represents the data classes
  user sees                          (UI)                               and contains the data, bound
• can be a user control or Data    • Communicates data                  to view and modified by view
  Template                           modifications to the Model       • Hold only the data or
• shouldn’t contain any logic or     from the View                      information related to an
  code that is to be tested        • Data changes in Model are          Object;
                                     reflected in the View through    • It doesn’t contain the
                                     ViewModel by making use of         behaviors or services that
                                     data Binding and dependency        manipulate this data or
                                     properties                         information, though
                                                                        sometimes it may contain data        View knows
                                                                        validation logic                                                                  Multiple Views : 1
                                                                                                        ViewModel, ViewModel
                                                                      • Example is “The Contact                                 1 View : 1 ViewModel   ViewModel (for Wizard
                                                                        information of a person” like    knows Model, but not
                                                                                                                                                        kind of applications)
                                                                        Name, Phone                           vice versa
                                                                        No, Email, Address, Zip Code
                                                                        etc.
Advantages
ViewModel classes are easy to unit test the complete UI without touching the UI code

Testing through ViewModel provides free and fast regression testing which helps to
reduce cost of maintaining application over time

Helps create a smooth Designer/developer workflow

 • Design team can focus on creating user-friendly views while,
 • Development team can focus on creating robust ViewModel classes
 • Which can then be integrated to ensure proper data bindings exist in the View’s XAML file

Takes full advantage of WPF’s Data Templates and Commands

Gives more flexibility to change UI without having to refactor the logic or change other
code base
What do u need to Understand in
 Order to Learn and Implement MVVM
Data Binding in WPF
  • http://msdn.microsoft.com/magazine/cc700358

Command Pattern Implementation in WPF
  • ICommand Interface usage
       public interface Icommand
       {
         bool CanExecute(object param);
         void Execute(object param);
         event EventHandler CanExecuteChanged;
       }

  • RelayCommand pattern
  • Routed Events and Commands in WPF
    • http://msdn.microsoft.com/magazine/cc785480

Composite Application Library from Microsoft
  • http://msdn.microsoft.com/library/cc707890

For Unit Testing:
  • Nunit
  • Moq Framework for .Net (Third Party classes for testing .Net Apps)
References and Resources
WPF Model-View-ViewModel Toolkit

•http://wpf.codeplex.com/wikipage?title=WPF%20Model-View-ViewModel%20Toolkit

MVVM Foundation on codeplex (A set of classes that helps build WPF Apps based on MVVM)

•http://mvvmfoundation.codeplex.com/

Super Simple MVVM Explained video:

•http://www.charlieblog.net/SuperSimpleMVVM/Large/SuperSimple_MVVM_large/SuperSimple_MVVM_large.html

MVVM MSDN Article:

•http://msdn.microsoft.com/en-us/magazine/dd419663.aspx

MVVM Channel9 video with Karl Shifflett

•http://channel9.msdn.com/shows/Continuum/MVVM/

WPF MVVM Video by Jason Dolinger

•http://hugeonion.com/2009/03/08/wpf-mvvm-video-by-jason-dolinger/

MVVM Explained

•http://csharperimage.jeremylikness.com/2010/04/model-view-viewmodel-mvvm-explained.html
Last Note on MVVM
• It is said that if you have not given names for
  your UI Elements and still able to run and
  process the application properly, the MVVM
  Implementation is clean, complete and proper



  – THANKS

Mais conteúdo relacionado

Mais procurados

Mais procurados (20)

MVC Architecture
MVC ArchitectureMVC Architecture
MVC Architecture
 
Training: MVVM Pattern
Training: MVVM PatternTraining: MVVM Pattern
Training: MVVM Pattern
 
Introduction to mvc architecture
Introduction to mvc architectureIntroduction to mvc architecture
Introduction to mvc architecture
 
Design Pattern - MVC, MVP and MVVM
Design Pattern - MVC, MVP and MVVMDesign Pattern - MVC, MVP and MVVM
Design Pattern - MVC, MVP and MVVM
 
Why MVC?
Why MVC?Why MVC?
Why MVC?
 
ASP.NET MVC Presentation
ASP.NET MVC PresentationASP.NET MVC Presentation
ASP.NET MVC Presentation
 
MVC ppt presentation
MVC ppt presentationMVC ppt presentation
MVC ppt presentation
 
Spring MVC Framework
Spring MVC FrameworkSpring MVC Framework
Spring MVC Framework
 
MVP Clean Architecture
MVP Clean  Architecture MVP Clean  Architecture
MVP Clean Architecture
 
Architectural Patterns and Software Architectures: Client-Server, Multi-Tier,...
Architectural Patterns and Software Architectures: Client-Server, Multi-Tier,...Architectural Patterns and Software Architectures: Client-Server, Multi-Tier,...
Architectural Patterns and Software Architectures: Client-Server, Multi-Tier,...
 
Let us understand design pattern
Let us understand design patternLet us understand design pattern
Let us understand design pattern
 
MVC architecture
MVC architectureMVC architecture
MVC architecture
 
Ppt of Basic MVC Structure
Ppt of Basic MVC StructurePpt of Basic MVC Structure
Ppt of Basic MVC Structure
 
MVC Framework
MVC FrameworkMVC Framework
MVC Framework
 
Introduction to react js
Introduction to react jsIntroduction to react js
Introduction to react js
 
MVC - Introduction
MVC - IntroductionMVC - Introduction
MVC - Introduction
 
Web engineering - MVC
Web engineering - MVCWeb engineering - MVC
Web engineering - MVC
 
Model View Controller (MVC)
Model View Controller (MVC)Model View Controller (MVC)
Model View Controller (MVC)
 
J2ee
J2eeJ2ee
J2ee
 
Dependency injection ppt
Dependency injection pptDependency injection ppt
Dependency injection ppt
 

Semelhante a MVVM with WPF

Introduction To MVVM
Introduction To MVVMIntroduction To MVVM
Introduction To MVVMBoulos Dib
 
Architectural Design & Patterns
Architectural Design&PatternsArchitectural Design&Patterns
Architectural Design & PatternsInocentshuja Ahmad
 
Mvc pattern and implementation in java fair
Mvc   pattern   and implementation   in   java fairMvc   pattern   and implementation   in   java fair
Mvc pattern and implementation in java fairTech_MX
 
Using mvvm inside mvc in domain driven design
Using mvvm inside mvc in domain driven designUsing mvvm inside mvc in domain driven design
Using mvvm inside mvc in domain driven designyashar Aliabasi
 
GUI patterns : My understanding
GUI patterns : My understandingGUI patterns : My understanding
GUI patterns : My understandingNitin Bhide
 
Models used in iOS programming, with a focus on MVVM
Models used in iOS programming, with a focus on MVVMModels used in iOS programming, with a focus on MVVM
Models used in iOS programming, with a focus on MVVMAndrei Popa
 
WPF For Beginners - Learn in 3 days
WPF For Beginners  - Learn in 3 daysWPF For Beginners  - Learn in 3 days
WPF For Beginners - Learn in 3 daysUdaya Kumar
 
Software architectural design patterns(MVC, MVP, MVVM, VIPER) for iOS
Software architectural design patterns(MVC, MVP, MVVM, VIPER) for iOSSoftware architectural design patterns(MVC, MVP, MVVM, VIPER) for iOS
Software architectural design patterns(MVC, MVP, MVVM, VIPER) for iOSJinkyu Kim
 
Mvvm in the real world tccc10
Mvvm in the real world   tccc10Mvvm in the real world   tccc10
Mvvm in the real world tccc10Bryan Anderson
 
SUE AGILE MVVM (English)
SUE AGILE MVVM (English)SUE AGILE MVVM (English)
SUE AGILE MVVM (English)Sabino Labarile
 
Mobile App Architectures & Coding guidelines
Mobile App Architectures & Coding guidelinesMobile App Architectures & Coding guidelines
Mobile App Architectures & Coding guidelinesQamar Abbas
 
MVVM for Modern Applications
MVVM for Modern ApplicationsMVVM for Modern Applications
MVVM for Modern ApplicationsJeremy Likness
 
Building databound JavaScript apps with Knockoutjs
Building databound JavaScript apps with KnockoutjsBuilding databound JavaScript apps with Knockoutjs
Building databound JavaScript apps with KnockoutjsNish Anil
 

Semelhante a MVVM with WPF (20)

MVVM Presentation
MVVM PresentationMVVM Presentation
MVVM Presentation
 
Introduction To MVVM
Introduction To MVVMIntroduction To MVVM
Introduction To MVVM
 
Architectural Design & Patterns
Architectural Design&PatternsArchitectural Design&Patterns
Architectural Design & Patterns
 
MVVM and Prism
MVVM and PrismMVVM and Prism
MVVM and Prism
 
Knockout js
Knockout jsKnockout js
Knockout js
 
Mvc pattern and implementation in java fair
Mvc   pattern   and implementation   in   java fairMvc   pattern   and implementation   in   java fair
Mvc pattern and implementation in java fair
 
MVC
MVCMVC
MVC
 
Adopting MVVM
Adopting MVVMAdopting MVVM
Adopting MVVM
 
Using mvvm inside mvc in domain driven design
Using mvvm inside mvc in domain driven designUsing mvvm inside mvc in domain driven design
Using mvvm inside mvc in domain driven design
 
MVC
MVCMVC
MVC
 
GUI patterns : My understanding
GUI patterns : My understandingGUI patterns : My understanding
GUI patterns : My understanding
 
Models used in iOS programming, with a focus on MVVM
Models used in iOS programming, with a focus on MVVMModels used in iOS programming, with a focus on MVVM
Models used in iOS programming, with a focus on MVVM
 
Mvc, mvp & mvvm (erp)
Mvc, mvp & mvvm (erp)Mvc, mvp & mvvm (erp)
Mvc, mvp & mvvm (erp)
 
WPF For Beginners - Learn in 3 days
WPF For Beginners  - Learn in 3 daysWPF For Beginners  - Learn in 3 days
WPF For Beginners - Learn in 3 days
 
Software architectural design patterns(MVC, MVP, MVVM, VIPER) for iOS
Software architectural design patterns(MVC, MVP, MVVM, VIPER) for iOSSoftware architectural design patterns(MVC, MVP, MVVM, VIPER) for iOS
Software architectural design patterns(MVC, MVP, MVVM, VIPER) for iOS
 
Mvvm in the real world tccc10
Mvvm in the real world   tccc10Mvvm in the real world   tccc10
Mvvm in the real world tccc10
 
SUE AGILE MVVM (English)
SUE AGILE MVVM (English)SUE AGILE MVVM (English)
SUE AGILE MVVM (English)
 
Mobile App Architectures & Coding guidelines
Mobile App Architectures & Coding guidelinesMobile App Architectures & Coding guidelines
Mobile App Architectures & Coding guidelines
 
MVVM for Modern Applications
MVVM for Modern ApplicationsMVVM for Modern Applications
MVVM for Modern Applications
 
Building databound JavaScript apps with Knockoutjs
Building databound JavaScript apps with KnockoutjsBuilding databound JavaScript apps with Knockoutjs
Building databound JavaScript apps with Knockoutjs
 

Último

Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfLoriGlavin3
 
Sample pptx for embedding into website for demo
Sample pptx for embedding into website for demoSample pptx for embedding into website for demo
Sample pptx for embedding into website for demoHarshalMandlekar2
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfMounikaPolabathina
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESSALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESmohitsingh558521
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii SoldatenkoFwdays
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxLoriGlavin3
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLScyllaDB
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersNicole Novielli
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.Curtis Poe
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxLoriGlavin3
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxLoriGlavin3
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionDilum Bandara
 
Time Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsTime Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsNathaniel Shimoni
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxLoriGlavin3
 

Último (20)

Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdf
 
Sample pptx for embedding into website for demo
Sample pptx for embedding into website for demoSample pptx for embedding into website for demo
Sample pptx for embedding into website for demo
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdf
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESSALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQL
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software Developers
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptx
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An Introduction
 
Time Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsTime Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directions
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
 

MVVM with WPF

  • 1. M-V-VM Model View ViewModel for WPF (Design Pattern)
  • 2. Highlights Created By John Gossman (WPF and Silverlight Architect at Microsoft) This pattern is a simple and effective set of Guidelines for Designing and Implementing a WPF application Allows you to create a strong separation between data, behavior and presentation (UI)
  • 3. Uses Databinding for 2 way communication between View (UI) and ViewModel Uses Command pattern (ICommand interface) for communicating actions or events that happen on View (UI) Dependency Properties alongwith Data Binding to communicate data changes to and from the View (UI)
  • 5. What is View, Model and ViewModel? View ViewModel Model • represents the UI that the end • is the abstraction of the View • Represents the data classes user sees (UI) and contains the data, bound • can be a user control or Data • Communicates data to view and modified by view Template modifications to the Model • Hold only the data or • shouldn’t contain any logic or from the View information related to an code that is to be tested • Data changes in Model are Object; reflected in the View through • It doesn’t contain the ViewModel by making use of behaviors or services that data Binding and dependency manipulate this data or properties information, though sometimes it may contain data View knows validation logic Multiple Views : 1 ViewModel, ViewModel • Example is “The Contact 1 View : 1 ViewModel ViewModel (for Wizard information of a person” like knows Model, but not kind of applications) Name, Phone vice versa No, Email, Address, Zip Code etc.
  • 6. Advantages ViewModel classes are easy to unit test the complete UI without touching the UI code Testing through ViewModel provides free and fast regression testing which helps to reduce cost of maintaining application over time Helps create a smooth Designer/developer workflow • Design team can focus on creating user-friendly views while, • Development team can focus on creating robust ViewModel classes • Which can then be integrated to ensure proper data bindings exist in the View’s XAML file Takes full advantage of WPF’s Data Templates and Commands Gives more flexibility to change UI without having to refactor the logic or change other code base
  • 7. What do u need to Understand in Order to Learn and Implement MVVM Data Binding in WPF • http://msdn.microsoft.com/magazine/cc700358 Command Pattern Implementation in WPF • ICommand Interface usage public interface Icommand { bool CanExecute(object param); void Execute(object param); event EventHandler CanExecuteChanged; } • RelayCommand pattern • Routed Events and Commands in WPF • http://msdn.microsoft.com/magazine/cc785480 Composite Application Library from Microsoft • http://msdn.microsoft.com/library/cc707890 For Unit Testing: • Nunit • Moq Framework for .Net (Third Party classes for testing .Net Apps)
  • 8. References and Resources WPF Model-View-ViewModel Toolkit •http://wpf.codeplex.com/wikipage?title=WPF%20Model-View-ViewModel%20Toolkit MVVM Foundation on codeplex (A set of classes that helps build WPF Apps based on MVVM) •http://mvvmfoundation.codeplex.com/ Super Simple MVVM Explained video: •http://www.charlieblog.net/SuperSimpleMVVM/Large/SuperSimple_MVVM_large/SuperSimple_MVVM_large.html MVVM MSDN Article: •http://msdn.microsoft.com/en-us/magazine/dd419663.aspx MVVM Channel9 video with Karl Shifflett •http://channel9.msdn.com/shows/Continuum/MVVM/ WPF MVVM Video by Jason Dolinger •http://hugeonion.com/2009/03/08/wpf-mvvm-video-by-jason-dolinger/ MVVM Explained •http://csharperimage.jeremylikness.com/2010/04/model-view-viewmodel-mvvm-explained.html
  • 9. Last Note on MVVM • It is said that if you have not given names for your UI Elements and still able to run and process the application properly, the MVVM Implementation is clean, complete and proper – THANKS