There is such an iconic font Font Awesome that is quite common in the web. In fact, the font file + Unicode symbol gives a beautiful icon on a web page.
And here I am trying to use the same principle in the wpf application. Logically it should work: c # is quite normal friends with unicode, and the font style is in his file. But does not work.
For example, the style of .fa-user-plus is a symbol of f234 I do this:
FPInput.FontFamily = new FontFamily("file:///с:/fonts/#FontAwesome"); FPInput.Content = "\uf234"; Actually, I see only an empty square on the form, that is, something is missing for it. Can anyone understand what the problem is?