I have a Silverlight
app where I want to give my textblock
an outline (not the textblock, the characters themselves), otherwise known as stroke
.
I found this question which works for WPF
, but is there a way to accomplish this when working with XAML/Silverlight
(PresentationFramework
is not a Silverlight
assembly)? Is there an existing implementation?
Path
an option? or is it dynamic? – Chris W.ContentControl
that applies a coupleDropShadowEffect
outlines in different directions to itsContentPresenter
and just load your text through it to get the same effect. – Chris W.