Typography for label
Cant Add Typography to my label font in WPF. D开发者_运维百科o you have any suggestions?
Well setting the Font works for me, so you might need to say more about what your require.
<StackPanel>
<Label FontFamily="Lucida Grande"
FontSize="13"
FontStyle="Italic">Typography words</Label>
<Label>Normal words</Label>
</StackPanel>
精彩评论