vote up 2 vote down star
3

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?

flag

5 Answers

vote up 4 vote down check

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|flag
1  
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 at 11:45
vote up 2 vote down

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|flag
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 at 10:50
vote up 2 vote down

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|flag
vote up 2 vote down

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|flag
Thank you for the link, I was going crazy with the built-in template source! – gmagana Nov 11 at 23:01
vote up 1 vote down

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

link|flag

Your Answer

Get an OpenID
or

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