What's the difference between MVC and MVP?
public class CustomerView : ICustomerView
{
public string Name
{
get { return txtName.Text; }
set { txtName.Text = value; }
}
}
Tags: model-view-controller mvp user-interface design-patterns terminology
Source: By Mike Minutillo as answer to the question
This code snippet was collected from stackoverflow, and is licensed under CC BY-SA 3.0
Related code-snippets:
- What is Inversion of Control?
- How do I capture TAB key in text box?
- How do I create a tree view preferences dialog?
- How do I create a class using Singleton Design Pattern in Ruby?
- How do I key a C# arrow key?
- How do I make a GUI?
- Why do Active Record Hate?
- How do I wrap RSYNC for Windows?
- What are your favorite ways of interacting with databases from a programming language?
- Custom WPF command pattern example.
- Need pattern for dynamic search of multiple sql tables?
- How can I remove icon from windows title bar without ditching close button?
- Looking for example of command pattern for UI?
- What are lambda?
- How do I install a plugin for QtWebKit?