I want to be able to define a font family for my WPF application. Preferably using a resource dictionary as a theme referenced from App.xaml. I\'ve tried creati
App.xaml
Most of proposed solutions didn't work for me. My simple solution:
Add this to App.xaml:
Add this in your MainWindow constructor (after InitializeComponent):
Style = (Style)FindResource(typeof(Window));