How can you access WPF's built-in styles/templates?
For example I'm trying to move the NavigationWindow's chrome to the bottom of the window. I've seen Microsoft's NavigationWindow template example but it is quite verbose and doesn't reuse the default navigation chrome.
I've also tried looking at the tree inside Snoop. All the chrome is contained inside a grid element called "NavChrome" but I can find any reference to it. There doesn't seem to be any "PART_xyz" that matches it either.
For the CTP some people mention using "PFThemeNavigationWindowNavigationButtonForwardButtonStyle", etc, for the button styles, however this doesn't seem to work anymore.
So, is it possible to access these built-in styles? It would be nice to reuse them in other places too!
Thanks!
Edit: saldoukhov's answer is very helpful but is there a way to do this without a need to copy all that XAML? It just doesn't seem like a very DRY approach to me.