WPF 字体设置

Posted lonelyxmas

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WPF 字体设置相关的知识,希望对你有一定的参考价值。

原文:WPF 字体设置


WPF 主界面 更换字体 可全局 但是有的时候有的窗体 字体还是没变 可以做全局样式
  1. <Window x:Class="CLeopardTestWpf.MainWindow"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. Title="MainWindow" Height="414" Width="615" FontFamily="Comic Sans MS">

全局样式

 

  1. <Application.Resources>
  2. <Style TargetType="{x:Type TextElement }">
  3. <Setter Property="FontFamily" Value="Comic Sans MS"/>
  4. <Setter Property="FontSize" Value="30"/>
  5. </Style>
  6. <Style TargetType="{x:Type TextBlock }">
  7. <Setter Property="FontFamily" Value="Comic Sans MS"/>
  8. <Setter Property="FontSize" Value="30"/>
  9. </Style>
  10. </Application.Resources>

 

 

 

 

 

以上是关于WPF 字体设置的主要内容,如果未能解决你的问题,请参考以下文章

WPF 怎么使用资源文件中的字体

刚接触wpf,入下面图片代码,在xaml中该怎么设置下面title的字体大小。

WPF 字体设置

VS2015C#WPF中label控件内的字体颜色怎样改变

wpfwindow.show字体不显示

如何编写自动扩展到系统字体和dpi设置的WinForms代码?