Click here to Skip to main content
15,885,029 members
Articles / Desktop Programming / WPF

Automatic Implementation of INotifyPropertyChanged on POCO Objects

Rate me:
Please Sign up or sign in to vote.
4.92/5 (24 votes)
7 Jan 2011CPOL4 min read 115.2K   2.3K   63  
Implementing INotifyPropertyChanged automatically using a custom proxy generator
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ComponentModel;
using System.Timers;

namespace Autonotify.Demo
{
    public class ClockViewModel
    {

        public virtual int Hour { get; set; }
        public virtual int Minute { get; set; }
        public virtual int Second { get; set; }
        public virtual int Millisecond { get; set; }
        public virtual int Centiseconds { get { return Millisecond / 10; } }
        
        
        Timer t;
        public ClockViewModel()
        {
            t = new Timer(10);
            t.Elapsed += new ElapsedEventHandler(t_Elapsed);
            t.Start();
        }

        void t_Elapsed(object sender, ElapsedEventArgs e)
        {
            var dt = DateTime.Now;
            Hour = dt.Hour;
            Minute = dt.Minute;
            Second = dt.Second;
            Millisecond = dt.Millisecond;
        }

        
    }
}

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
Italy Italy
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions