Does anyone know where to find a list of controls that you can set the template on in Silverlight? I've wasted several hours now trying to create control templates only to find that the control doesn't support the template property.
By "doesn't support" I mean:
<Style x:Key="blah" TargetType="Border">
<Setter Property="Template">
Throws an error saying "Invalid attribute value Template for property Property".
I now know that I can't create a template for TextBlocks or Borders. Is there a definitive list somewhere? It's not on Microsoft's site as far as I can tell.
Thanks!