Click here to Skip to main content
15,885,216 members
Articles / Web Development / ASP.NET

MVC, MVP, ASP.NET

Rate me:
Please Sign up or sign in to vote.
4.39/5 (18 votes)
31 Oct 2008CPOL12 min read 129.6K   338   98  
MVC Design pattern in comparison with MVP in the ASP.NET world
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ComponentModel;

namespace WpfMvc.Models
{
    public class ModelBase : IModelBase
    {
        #region INotifyPropertyChanged
        /// <summary>
        /// INotifyPropertyChanged declared event
        /// </summary>
        public event PropertyChangedEventHandler PropertyChanged;
        
        /// <summary>
        /// For every property raises the event 'PropertyChanged'
        /// </summary>
        public void Refresh()
        {
            if (PropertyChanged != null)
            {
                foreach (System.ComponentModel.PropertyDescriptor pd in TypeDescriptor.GetProperties(this.GetType()))
                {
                    PropertyChanged(this, new PropertyChangedEventArgs(pd.Name));
                    WpfMvc.Entities.INotifyingCollection list = pd.GetValue(this) as WpfMvc.Entities.INotifyingCollection;
                    if(list != null)
                    {
                        list.ResetBindings();
                    }
                }
            }
        }

        #endregion INotifyPropertyChanged
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
Czech Republic Czech Republic
Web developer since 2002, .NET since 2005

Competition is as important as Cooperation.

___

Comments and Discussions