I am trying to create a textblock with oversized quotes at the start and end of some text, which I’ve managed to do with the following xaml:
<StackPanel Orientation="Horizontal">
<TextBlock Text=""" FontSize="56" VerticalAlignment="Top" />
<TextBlock TextWrapping="Wrap" Width="350">
This is some text to be quoted!
</TextBlock>
<TextBlock Text=""" FontSize="56" VerticalAlignment="Bottom" />
</StackPanel>
But what I’d really like is for the quote characters to be curved in towards the text, rather than just the straight up and down variety quotes. Is there any way to do this without an image for the quotes?
Maybe the Unicode value for single and double curly quotes will help you: