How to simplify coding DependencyProperty in WPF and Silverlight

Articles

How to simplify coding DependencyProperty in WPF and Silverlight

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 so easy to make mistakes. I’ve found an excellent solution to solve this problem. 

Using the code

1. Install AutoCode 4.0 (https://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 https://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 version="1.0"?>
<Commands xmlns="https://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>https://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

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

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)#>;
}
TechnoBits. All rights reserved
Back To Top