I've got a style declared where, within the Template setter, I try to drop
in a previously-declared resource declared like so:
<Polyline x:Key="UpArrowGlyph" Points="0,0 0.5,0.3 1,0" Stroke="#FF5B6473"
StrokeThickness="0.2" RenderTransformOrigin="0.5,0.5">
<Polyline.RenderTransform>
<RotateTransform Angle="180"/>
</Polyline.RenderTransform>
</Polyline>
However, I can't seem to get the syntax for dropping it into a style. I use
them in my UI itself, and it works just fine, but if I construct my template
in this way:
<Viewbox Stretch="Fill">
<StaticResource ResourceKey="UpArrowGlyph" />
</Viewbox>
It says I can't use non-frameworkelements in my style. I know I'm missing
some basic piece of syntax, but I've been stumped on this one for several
days (including getting sidetracked on a 360).

).

