Click here to Skip to main content
15,885,757 members
Articles / Desktop Programming / WPF
Tip/Trick

How to simplify coding DependencyProperty in WPF and Silverlight

Rate me:
Please Sign up or sign in to vote.
3.67/5 (2 votes)
11 Feb 2012CPOL 34.7K   2   3
Simplify Coding DependencyProperty
Introduction

This tip will introduce an excellent method to simplify coding DependencyProperty in WPF and Silverlight.

Background

Writing Dependency Property is really an annoying task and it is so easy to make mistakes. I've found an excellent solution to solve this problem.

Using the code

  1. Install AutoCode 4.0 (http://www.devprojects.net/).

  2. Generate the three files at the last section of the tip (contains the custom script written by myself) and copy it to "C:\Documents and Settings\user\My Documents\AutoCode 2010\Commands\CSharp\Misc".

  3. Open Visual Studio and find a proper place to type "<propertyType> <propertyName> <ownerType> dp", press "Ctrl + Enter", and this line will be replaced by a generated section of code, which is exactly what you want.

Any problem, please feel free to ask me and wish you enjoy it!

PS: Professional Edition of AutoCode is required to use the custom script without any limitation, or else you need to restart Visual Studio after you have used it more than four times. Refer to http://www.devprojects.net/donate to find how to Activate AutoCode Professional Edition.

Points of Interest
You can do a lot of other great things with AutoCode to simplify our daily development work.

dependencyproperty.autox
XML
<?xml version="1.0"?>
<Commands xmlns="http://schemas.devprojects.net/AutoCode/v4.0">
  <Command name="DependencyProperty" version="1.0">

    <Includes>
      <Include file="DependencyProperty.cs" />
    </Includes>

    <CommandBehavior>
      <CommandLine shortcut="dp" />
      <ActiveDocument extensions=".cs"/>
    </CommandBehavior>

    <CommandInfo>
      <LanguageCategory>CSharp</LanguageCategory>
      <Category>Code</Category>
      <Usage>
        <![CDATA[<propertyType> <propertyName> <ownerType> dp]]>
      </Usage>
      <Example>RevealedImageData ImageData ThumbnailItem dp</Example>
      <Description>Constructs a dependency property.</Description>
      <Author>Logan</Author>
      <HelpUrl>http://help.devprojects.net/gallery/command/dependencyproperty</HelpUrl>
    </CommandInfo>

    <CommandCode language="csharp">

      <Codes>
        <Code id="Template" file="DependencyProperty.txt" />
      </Codes>

      <Selection codeElement="Template" codePoint="StartOfElement" clearSelection="true">
        <SelectText>/*I*/</SelectText>
      </Selection>

      <SmartFormat>
        <Start codeElement="Template" codePoint="StartOfElement" />
        <End codeElement="Template" codePoint="EndOfElement" />
      </SmartFormat>

    </CommandCode>
      <Signature><![CDATA[
      TywprO0zpyigJnvnfRLr5DQzFqx/waZe+PltR8oKmS40caftX06mJ+jTb
      HRDdg2aRWFfQWhaJnzj9FNHblputjFrOFp8BeEGpYcawV52uQoUBgQ3xF
      AE9D0BXG/m542oPjQnpr7L92oMYRBwXOS1air+r2aRqM4AiPxcDDf4DXU=
    ]]></Signature>

</Command>
</Commands>


dependencyproperty.cs
C#
using System;
using System.IO;
using System.Collections.Generic;

using DevProjects.AutoCode.Commands;

public partial class DependencyPropertyCommand : CommandBase
{
    private string PropertyType;
    private string PropertyName;
    private string OwnerType;

    protected override bool BeforeExecute(string commandArgs)
    {
        if (Arguments.Length != 3)
        {
            CommandHelper.InvalidArguments("Please, specify property type, property name and the owner type.");
            return false;
        }

        PropertyType = Arguments[0];
        PropertyName = Arguments[1];
        OwnerType = Arguments[2];

        return true;
    }
}


dependencyproperty.txt
C#
public <#=PropertyType#> <#=PropertyName#>
{
    get { return (<#=PropertyType#>)GetValue(<#=PropertyName#>Property); }
    set { SetValue(<#=PropertyName#>Property, value); }
}
public static readonly DependencyProperty <#=PropertyName#>Property =
    DependencyProperty.Register("<#=PropertyName#>Property", typeof(<#=PropertyType#>),
    typeof(<#=OwnerType#>), new PropertyMetadata(On<#=PropertyName#>Callback));
private static void On<#=PropertyName#>Callback(DependencyObject obj, DependencyPropertyChangedEventArgs e)
{
    <#=OwnerType#> <#=ToCamelCase(OwnerType)#> = obj as <#=OwnerType#>;
    <#=PropertyType#> <#=ToCamelCase(PropertyType)#> = e.NewValue as <#=PropertyType#>;

    if (<#=ToCamelCase(PropertyType)#> == null)
        return;

    <#=ToCamelCase(OwnerType)#>/*I*/ = <#=ToCamelCase(PropertyType)#>;
}

License

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


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralMy vote of 5 Pin
sgmoore15-Jun-13 1:07
sgmoore15-Jun-13 1:07 
GeneralReason for my vote of 1 I don't see the point, just use prop... Pin
MLaino15-Feb-12 6:17
MLaino15-Feb-12 6:17 
GeneralThis is not simpler than Ctrl+C, Ctrl+V. Real "simplificatio... Pin
Thornik23-Jan-12 21:03
Thornik23-Jan-12 21:03 

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

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.