How to store FontFamily as a StaticResource?
问题 I'm trying to figure out how to set a FontFamily in my App.xaml in such a way that I can declaratively apply that style wherever I need to. In the ResourceDictionary I can apply something like: <System:Double x:Key="SmallTextSize">10</System:Double> What I want to do then is something like: <FontFamily x:Key="MainFont">Wingdings</FontFamily> But, the only thing I can get to work is an implicit style, which requires a target, and multiple declarations of the font I want to use. I need to be