I am creating some custom controls in WPF and need to therefore create the default control templates for them. To help in this process I would like to see the XAML of the control templates for the builtin controls as a reference.

I can open up the PresentationFramework.Class dll into .NET Reflector but cannot find anything inside it of use. It seems to have only BAML but not the original XAML.

Is this available online somewhere? Or is there a tool that can extract it?

link|improve this question

See also "Where can I download Microsoft's standard WPF themes from?" stackoverflow.com/questions/4158678/… – emddudley Nov 16 '10 at 15:08
feedback

5 Answers

up vote 9 down vote accepted

If you have Expression Blend installed several themes, including classic.xaml, can be found in

C:\Program Files\Microsoft Expression\Blend 3\SystemThemes\Wpf

link|improve this answer
2  
If you have the Windows SDK installed they are also available in C:\Program Files\Microsoft SDKs\Windows\v6.1\Samples\WPFSamples.zip in the Core folder e.g. Core\ClassicTheme\xaml\classic.xaml – Phil Devaney Sep 21 '09 at 11:45
2  
You can download these files directly from MSDN, without Blend: msdn.microsoft.com/en-us/library/aa358533.aspx – emddudley Mar 8 '10 at 15:51
feedback

If you need to build new templates the sample control templates at http://msdn.microsoft.com/en-us/library/aa970773.aspx are often a better starting point.

The actual themes included with WPF are not designed to be extendable or understandable

link|improve this answer
Thank you for the link, I was going crazy with the built-in template source! – Gabriel Magana Nov 11 '09 at 23:01
feedback

The BAML to XAML Viewer add-in for Reflector can extract the BAML, convert it to XAML and you can also save it to file.

link|improve this answer
feedback

Check out StyleSnooper. It allows you to pick any of the inbuilt controls and dump out the default style xaml.

(You can also do this from Expression Blend if you have it.)

link|improve this answer
Snoop can also do this - very lightweight, easy to use and has a few other features such as 3D zooming and heirarchy views: blois.us/Snoop – Daniel May Sep 21 '09 at 10:50
feedback

at http://www.xamltemplates.net/sample/sample.zip you can find a theme sample and you have the xaml files, check it out

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.