You don't need to install fonts.
There is a bug in your code : remove the "/" in FontFamily name.
Test :
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
In my WinUI 3 app, I try to declare and apply my downloaded fonts but it doesn't work.
Note: If I manually install the font on my computer, it works well. I wonder if the font installation is a must-have step in WinUI 3?
Steps that I have done
<ResourceDictionary>
<FontFamily x:Key="DancingScriptBold">/Assets/Fonts/DancingScript-Bold.ttf/#Dancing Script</FontFamily>
</ResourceDictionary>
<Style x:Key="Body1" TargetType="TextBlock">
<Setter Property="FontSize" Value="14" />
<Setter Property="FontFamily" Value="{StaticResource DancingScriptBold}" />
</Style>
You don't need to install fonts.
There is a bug in your code : remove the "/" in FontFamily name.
Test :
I wonder if the font installation is a must-have step
If you want to use a font in any app, also like Ofiice/Word, then installing the font on the machine is always a must-have.