Click here to Skip to main content
Click here to Skip to main content

How to Implement a DependencyProperty?

By , 8 Sep 2009
 

A DependencyProperty is set to enable declarative code to alter the properties of an object which reduces the data requirements by providing a more powerful notification system regarding the change of data in a very specific way. In .NET, there are two types of properties: the normal property, and a Dependency Property which adds functionality over the normal property.

Now, let us discuss on how to implement such a Dependency Property to give a powerful notification on a data change.

First of all, implement the UserControl class from the INotifyPropertyChanged interface:

public partial class MyUserControl : UserControl, INotifyPropertyChanged 
{ 
    public event PropertyChangedEventHandler PropertyChanged; 
    protected void OnPropertyChanged(string propertyName) 
    { 
        if (PropertyChanged != null) 
        { 
            PropertyChanged(this, new PropertyChangedEventArgs(propertyName)); 
        } 
    } 
}

Create your own normal property. Let's say the name of the property is “Caption”.

public string Caption 
{  
    get { return GetValue(CaptionProperty).ToString(); }  
    set { SetValue(CaptionProperty, value); } 
}

Now, register the DependencyProperty to the CLR by calling the Register method and by passing the property field that you used to store the data in the earlier step:

public static readonly DependencyProperty CaptionProperty = 
  DependencyProperty.Register("Caption", typeof(string), typeof(MyUserControl), 
  new PropertyMetadata(string.Empty, OnCaptionPropertyChanged));

The name of the identifier field of the DependencyProperty will be same as you used in the property after appending “Property” at the end. In this example, our property name is “Caption”, hence our identifier field name is “CaptionProperty”. Add the PropertyMetaData with the default value and the callback event handler within the Register method as mentioned in the above code. Mark the identifier as static and readonly so that this will be unique to the CLR.

Now, implement the OnCaptionPropertyChanged event handler:

private static void OnCaptionPropertyChanged(DependencyObject dependencyObject, 
               DependencyPropertyChangedEventArgs e) 
{  
    MyUserControl myUserControl = dependencyObject as MyUserControl;  
    myUserControl.OnPropertyChanged("Caption");  
    myUserControl.OnCaptionPropertyChanged(e); 
}
private void OnCaptionPropertyChanged(DependencyPropertyChangedEventArgs e) 
{ 
    txbCaption.Text = Caption; 
}

The implementation of the Dependency Property is complete. You can either call it from XAML:

<local:MyUserControl Caption="My First Dependency Property Example" />

or from the code-behind:

MyUserControl myUserControl = new MyUserControl(); 
myUserControl.SetValue(MyUserControl.CaptionProperty, 
              "My First Dependency Property Example");

License

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

About the Author

_ Kunal Chowdhury _
Software Developer
India India
Member
Kunal Chowdhury is a Microsoft MVP (Most Valuable Professional) in Silverlight Technology, a Codeproject MVP & Mentor, DZone MVB (Most Valuable Blogger), Speaker in various Microsoft events, Author, passionate Blogger and a Software Engineer by profession.
 
He is currently working as a Software Engineer II in an MNC located at Pune, India. He has a very good skill over XAML, C#, Silverlight and WPF. He has a good working experience in Windows 7 application (including Multi-touch) development too.
 
He posts his findings in his technical blog. He also writes for SilverlightShow and Codeproject portal. Many of his articles were highlighted as "Article of the Day" in Microsoft sites.
 
He also has another website called Silverlight-Zone.com where he posts article links on Silverlight, Windows Phone 7 and XNA accumulated from various web sites to help the community grow on specified technologies.
 
You can reach him in his Blog : http://www.kunal-chowdhury.com
He is also available in Twitter : http://twitter.com/kunal2383

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralMy vote of 5membermhdnour14 Apr '12 - 8:00 
GeneralMy vote of 5memberMember 476816328 Feb '12 - 0:40 
GeneralMy vote of 4memberbluetiger092013 Apr '11 - 17:57 
GeneralMy vote of 2memberPatel Kalpesh15 Feb '11 - 19:54 
GeneralMy vote of 1membermahendra varman29 Dec '10 - 19:00 
QuestionWhat the Identifier should be defined readonly ???memberMember 330120119 Nov '10 - 0:33 
GeneralMy vote of 1memberphobik26 Oct '10 - 14:15 
GeneralRe: My vote of 1mentorKunalChowdhury7 Nov '10 - 21:50 
Generalone small correctionmemberShanbhag uday20 Mar '10 - 3:52 
AnswerRe: one small correctionmentorKunalChowdhury10 Jul '10 - 2:09 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130516.1 | Last Updated 8 Sep 2009
Article Copyright 2009 by _ Kunal Chowdhury _
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid