Cant Add Typography to my label font in WPF. Do you have any suggestions?
A:
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>
Simeon Pilgrim
2009-12-07 02:52:57