SlideShare a Scribd company logo
1 of 24
0
Agenda
• MVVM
• PRISM
MVVM
Model-View-ViewModel
What is MVVM
• MVVM is a design pattern
• MVVM stands for Model-View-ViewModel
• Design patterns are a set of guidelines
• Design patterns are Not a set of rules
MVC vs MVVM
• MVC – The view sits at the top of the architecture, the
controller sits below the view. The model sits below the
controller. So the view knows about the controller, the
controller knows the model. The view is notified when the
model changes.

• MVVM – The controller is replaced with a view model. the
view model sits below the UI layer. The view model exposes
the data and command objects that the view needs. You could
think of this as a container object that view goes to to get its
data and actions from. The view model pulls its data from the
model below.
What is MVVM
• MVVM is a three-layer architectural pattern
• Mostly used in Windows 8, WPF and Silverlight applications.
• Used to separate presentation logic from business logic.

• MVVM makes it easier
• For the developer and the front-ender to work on the same
project.
• Change the presentation layer at any point.
• Extend the project with less difficulties.
• Testing components.
MVVM Architecture
• MVVM consists of three layers
• View is the Presentation Layer
• Contains only GUI elements, but no functionality

• Model refers to
• An object model that represents the real state content
• A data access layer that represents that content

• ViewModel is a "Model of the View"
•
•
•
•
•
•

Abstraction of the View
Serves in data binding between the View and the Model
Acts as a data binder/converter
Changes Model information into View information
Passes commands from the View into the Model
Exposes public properties, commands, and abstractions
MVVM Layers Connections
View

ViewModel

Model

• The main idea of MVVM is that each pair of layers is coupled
as loosely as possible
• The View only knows about the ViewModel
• The View has no idea of the Model

• The ViewModel only knows about the Model
• The ViewModel has no idea of the View

• The Model knows nothing about the other layers
Loosely Coupled
• The View knows the ViewModel but the ViewModel
does not know the View.
• You can very easily replace the View without affecting
the ViewModel.
• This is very useful in Developer/Designer teams where
the Developer improves the ViewModel and the
Designer enhances the View.
MVVM Execution
• What happens when an user clicks a Button?
1.
2.
3.

The View fires event that a button was clicked
The View calls a Method in the ViewModel
The ViewModel gets/sets some data from/in the Model

User Fires
an Event

View

The ViewModel
requests data

ViewModel
The View Shows
the new data

The ViewModel
receives data

Model
ViewModel Implementation
• A question pops out
• How does the View know about changes in the ViewModel?
• How the ViewModel knows about changes in the Model?
• There is no reversed connection, right?

• The answer is simple
• The INotifyPropertyChanged interface
• Gives an event to notify about changes
INotifyProperyChanged
• The INotifyPropertyChanged interface contains
only one event
PropertyChanged(object sender, PropertyChangedEventArgs e)

• The point of this event is to be called when the data is
changed
• Both Model and ViewModel should implement this
interface
• In small project only the ViewModel can implement it
Prism-RT
•
•
•
•
•
•
•
•
•

WPF
Microsoft Patterns & Practices Guidelines
Prism 1,2,3,4
Prism for Windows-RT
Inversion of Control
Delegate Commands
Model Validation
Navigation
…And more
Inversion of Control
•
•
•
•
•

How does normal control flow look like?
Inverted Flow?
Common in Framework Extensions
Inevitable if you want to build loosely coupled modules
But How to decide which module gets the call?
Dependency Injection
•
•
•
•

Caller doesn’t have to know the callee
Dependency resolution not caller’s headache anymore
Interaction is now based on defined interfaces
Types of DI
• Constructor Injection*
• Setter Injection
• Interface Injection
IOC Frameworks
• StructureMap
• Unity
• Managed Extensibility Framework (MEF)
Infrastructure Services
•
•
•
•
•
•
•

IOC Container
NavigationService
EventAggregator
SessionStateService
FlyoutService
Service Proxies
Other objects that are needed application wide
ViewModel Auto Wire-up
• Resolve( )
• ViewModelLocator.
SetDefaultViewTypeToViewModelTypeResolver
• Persistence
• If you can’t use Auto Wire-up
• Declarative wire-up
• Programmatic wire-up
Commands
•
•
•
•
•

Delegate Commands
Synchronous Command Execution
Asynchronous Command Execution
Command Parameters
Conditional Command Execution
Model Validation
•
•
•
•

ValidatableBindableBase
BindableValidator
Annotation Attributes
When to Validate
• When property value is set?
• When a command is fired?

• Error Message Binding
• Restoring Error State
Model Validation (Contd.)
Useful Links
• http://msdn.microsoft.com/enus/library/windows/apps/hh465099.aspx
• http://msdn.microsoft.com/enus/library/windows/apps/br229566.aspx
MVVM and Prism

More Related Content

What's hot

What's hot (20)

MVx patterns in iOS (MVC, MVP, MVVM)
MVx patterns in iOS (MVC, MVP, MVVM)MVx patterns in iOS (MVC, MVP, MVVM)
MVx patterns in iOS (MVC, MVP, MVVM)
 
Asp.net Overview and Controllers
Asp.net Overview and ControllersAsp.net Overview and Controllers
Asp.net Overview and Controllers
 
Design Pattern - MVC, MVP and MVVM
Design Pattern - MVC, MVP and MVVMDesign Pattern - MVC, MVP and MVVM
Design Pattern - MVC, MVP and MVVM
 
Ui design patterns
Ui design patternsUi design patterns
Ui design patterns
 
MVC
MVCMVC
MVC
 
Introduction to mvc architecture
Introduction to mvc architectureIntroduction to mvc architecture
Introduction to mvc architecture
 
What is MVC?
What is MVC?What is MVC?
What is MVC?
 
MVC Architecture
MVC ArchitectureMVC Architecture
MVC Architecture
 
Acrhitecture deisign pattern_MVC_MVP_MVVM
Acrhitecture deisign pattern_MVC_MVP_MVVMAcrhitecture deisign pattern_MVC_MVP_MVVM
Acrhitecture deisign pattern_MVC_MVP_MVVM
 
MVC Seminar Presantation
MVC Seminar PresantationMVC Seminar Presantation
MVC Seminar Presantation
 
MVVM Design Pattern NDC2009
MVVM Design Pattern NDC2009MVVM Design Pattern NDC2009
MVVM Design Pattern NDC2009
 
ASP.NET MVC for Begineers
ASP.NET MVC for BegineersASP.NET MVC for Begineers
ASP.NET MVC for Begineers
 
Mvc fundamental
Mvc fundamentalMvc fundamental
Mvc fundamental
 
MVVM with WPF
MVVM with WPFMVVM with WPF
MVVM with WPF
 
MVC Architecture in ASP.Net By Nyros Developer
MVC Architecture in ASP.Net By Nyros DeveloperMVC Architecture in ASP.Net By Nyros Developer
MVC Architecture in ASP.Net By Nyros Developer
 
Ppt of Basic MVC Structure
Ppt of Basic MVC StructurePpt of Basic MVC Structure
Ppt of Basic MVC Structure
 
Model View Presenter (MVP) In Aspnet
Model View Presenter (MVP) In AspnetModel View Presenter (MVP) In Aspnet
Model View Presenter (MVP) In Aspnet
 
OSGi Community Event 2010 - VMware and SpringSource Projects on OSGi
OSGi Community Event 2010 - VMware and SpringSource Projects on OSGiOSGi Community Event 2010 - VMware and SpringSource Projects on OSGi
OSGi Community Event 2010 - VMware and SpringSource Projects on OSGi
 
MVVM in iOS presentation
MVVM in iOS presentationMVVM in iOS presentation
MVVM in iOS presentation
 
No brainer
No brainerNo brainer
No brainer
 

Similar to MVVM and Prism

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
Tech_MX
 

Similar to MVVM and Prism (20)

Web engineering - MVC
Web engineering - MVCWeb engineering - MVC
Web engineering - MVC
 
Architectural Design & Patterns
Architectural Design&PatternsArchitectural Design&Patterns
Architectural Design & Patterns
 
Adopting MVVM
Adopting MVVMAdopting MVVM
Adopting MVVM
 
MVVM
MVVMMVVM
MVVM
 
Mobile App Architectures & Coding guidelines
Mobile App Architectures & Coding guidelinesMobile App Architectures & Coding guidelines
Mobile App Architectures & Coding guidelines
 
MVVM - Model View ViewModel
MVVM - Model View ViewModelMVVM - Model View ViewModel
MVVM - Model View ViewModel
 
MVP Clean Architecture
MVP Clean  Architecture MVP Clean  Architecture
MVP Clean Architecture
 
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 architecture
MVC architectureMVC architecture
MVC architecture
 
MVC architecture in software programming for interactive apps
MVC architecture in software programming for interactive appsMVC architecture in software programming for interactive apps
MVC architecture in software programming for interactive apps
 
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
 
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
 
Knockout js
Knockout jsKnockout js
Knockout js
 
iOS architecture patterns
iOS architecture patternsiOS architecture patterns
iOS architecture patterns
 
MVC.pptx
MVC.pptxMVC.pptx
MVC.pptx
 
MVC architecture by Mohd.Awais on 18th Aug, 2017
MVC architecture by Mohd.Awais on 18th Aug, 2017MVC architecture by Mohd.Awais on 18th Aug, 2017
MVC architecture by Mohd.Awais on 18th Aug, 2017
 
Mvc architecture
Mvc architectureMvc architecture
Mvc architecture
 
Viper architecture
Viper architectureViper architecture
Viper architecture
 
Mvc part 1
Mvc part 1Mvc part 1
Mvc part 1
 
Android architectural components
Android architectural componentsAndroid architectural components
Android architectural components
 

Recently uploaded

Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
Joaquim Jorge
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 

Recently uploaded (20)

Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of Brazil
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your Business
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 

MVVM and Prism

  • 1. 0
  • 4. What is MVVM • MVVM is a design pattern • MVVM stands for Model-View-ViewModel • Design patterns are a set of guidelines • Design patterns are Not a set of rules
  • 5. MVC vs MVVM • MVC – The view sits at the top of the architecture, the controller sits below the view. The model sits below the controller. So the view knows about the controller, the controller knows the model. The view is notified when the model changes. • MVVM – The controller is replaced with a view model. the view model sits below the UI layer. The view model exposes the data and command objects that the view needs. You could think of this as a container object that view goes to to get its data and actions from. The view model pulls its data from the model below.
  • 6. What is MVVM • MVVM is a three-layer architectural pattern • Mostly used in Windows 8, WPF and Silverlight applications. • Used to separate presentation logic from business logic. • MVVM makes it easier • For the developer and the front-ender to work on the same project. • Change the presentation layer at any point. • Extend the project with less difficulties. • Testing components.
  • 7. MVVM Architecture • MVVM consists of three layers • View is the Presentation Layer • Contains only GUI elements, but no functionality • Model refers to • An object model that represents the real state content • A data access layer that represents that content • ViewModel is a "Model of the View" • • • • • • Abstraction of the View Serves in data binding between the View and the Model Acts as a data binder/converter Changes Model information into View information Passes commands from the View into the Model Exposes public properties, commands, and abstractions
  • 8.
  • 9. MVVM Layers Connections View ViewModel Model • The main idea of MVVM is that each pair of layers is coupled as loosely as possible • The View only knows about the ViewModel • The View has no idea of the Model • The ViewModel only knows about the Model • The ViewModel has no idea of the View • The Model knows nothing about the other layers
  • 10. Loosely Coupled • The View knows the ViewModel but the ViewModel does not know the View. • You can very easily replace the View without affecting the ViewModel. • This is very useful in Developer/Designer teams where the Developer improves the ViewModel and the Designer enhances the View.
  • 11. MVVM Execution • What happens when an user clicks a Button? 1. 2. 3. The View fires event that a button was clicked The View calls a Method in the ViewModel The ViewModel gets/sets some data from/in the Model User Fires an Event View The ViewModel requests data ViewModel The View Shows the new data The ViewModel receives data Model
  • 12. ViewModel Implementation • A question pops out • How does the View know about changes in the ViewModel? • How the ViewModel knows about changes in the Model? • There is no reversed connection, right? • The answer is simple • The INotifyPropertyChanged interface • Gives an event to notify about changes
  • 13. INotifyProperyChanged • The INotifyPropertyChanged interface contains only one event PropertyChanged(object sender, PropertyChangedEventArgs e) • The point of this event is to be called when the data is changed • Both Model and ViewModel should implement this interface • In small project only the ViewModel can implement it
  • 14. Prism-RT • • • • • • • • • WPF Microsoft Patterns & Practices Guidelines Prism 1,2,3,4 Prism for Windows-RT Inversion of Control Delegate Commands Model Validation Navigation …And more
  • 15. Inversion of Control • • • • • How does normal control flow look like? Inverted Flow? Common in Framework Extensions Inevitable if you want to build loosely coupled modules But How to decide which module gets the call?
  • 16. Dependency Injection • • • • Caller doesn’t have to know the callee Dependency resolution not caller’s headache anymore Interaction is now based on defined interfaces Types of DI • Constructor Injection* • Setter Injection • Interface Injection
  • 17. IOC Frameworks • StructureMap • Unity • Managed Extensibility Framework (MEF)
  • 19. ViewModel Auto Wire-up • Resolve( ) • ViewModelLocator. SetDefaultViewTypeToViewModelTypeResolver • Persistence • If you can’t use Auto Wire-up • Declarative wire-up • Programmatic wire-up
  • 20. Commands • • • • • Delegate Commands Synchronous Command Execution Asynchronous Command Execution Command Parameters Conditional Command Execution
  • 21. Model Validation • • • • ValidatableBindableBase BindableValidator Annotation Attributes When to Validate • When property value is set? • When a command is fired? • Error Message Binding • Restoring Error State
  • 23. Useful Links • http://msdn.microsoft.com/enus/library/windows/apps/hh465099.aspx • http://msdn.microsoft.com/enus/library/windows/apps/br229566.aspx