The SilverlightContrib project has snippets for DPs and APs (and other Silverlight tasks). Well worth the investment (since its free).
http://silverlightcontrib.codeplex.com
Thanks,
Shawn Wildermuth
Microsoft MVP (C#), MCSD.NET, Author and Speaker
The Silverlight Tour is coming to a city near you!
Nicely done, Colin!
Shawn: The problem I have with snippets is that they're applied once and then never changed again. It's like when folks do copy+paste of big code blocks to implement something new - it becomes a maintainability challenge very quickly. The nice thing about the T4 templates approach is that if you decide to make a change to the way you do your DependencyProperties, you can make it in one place and ALL your code automatically benefits. Plus the size of your code files is kept way down since there's not all this redundant stuff in your face. Something like on-demand code generation seems the right way to go here - and T4 seems to do the job pretty conveniently.
PS - Yes, I'll admit it, I'm a fan of C-style macros, too - when used with care... :)