So after quick search i found this solution:
I have inside my Resources
folder fond called Abstract
.
<Window.Resources>
<Style x:Key="Abstract">
<Setter Property="Label.FontFamily" Value="Resources/#Abstract" />
</Style>
</Window.Resources>
And my Label
:
<Label Name="lblValue"
Content="Value"
Style="{DynamicResource Abstract}"
FontSize="14"/>
And nothing happening, i just cannot see the font
i want.