I am making use of Font Awesome\'s icons to render basic font images within my C# WPF application. During run-time when I attempt to alter the TextBlock to display a differe
Font Awesome has NuGet packages named FontAwesome.UWP and FontAwesome.WPF. Just download one of this.
If you will use a icon import follow namespace into your XAML code:
xmlns:fa="http://schemas.fontawesome.io/icons/"
Use it into your button like this:
And finally in your C# code behind:
using FontAwesome.WPF; // on the top of the code
btnButton.Content = FontAwesomeIcon.LongArrowRight;