まめ - たんたんめん

備忘録 C# / WPF 多め

WPF TextBlock等で利用される規定のFontFamily

設定がない場合SystemFonts.MessageFontFamilyから取得したものを利用する

デフォルト(規定)のTypeFaceを作成するには

var typeface = new Typeface(SystemFonts.MessageFontFamily.Source);

もしくは

 var typeface = new Typeface(SystemFonts.MessageFontFamily , FontStyles.Normal, FontWeights.Regular, FontStretches.Normal);