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
One simple way to do it programmatically:
public MainWindow() { this.FontFamily = new FontFamily("Segoe UI"); }