如何更改Window窗体的FontFamily?

发布于 2024-08-17 09:16:58 字数 424 浏览 4 评论 0原文

即使我已经设置了这些属性,我也无法更改窗口窗体标题的 fontfamily 或 fontstyle。默认的 fontfamily 是 MS UI Gothic,我想更改为 meiryo。在 XML 文件中,看起来不错,但在运行时没有任何更改。

 <Window x:Class="TestFont.Window1"
   xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
   xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
   Title="Window1" Height="130" Width="369" FontFamily="meiryo"  FontStyle="Italic">
</Window>

I cannot change fontfamily or fontstyle for title of Window Form even though I have already set these properties.The default fontfamily is MS UI Gothic and I want change to meiryo.At XML file, It seems ok but It doesnt have any changes at runtime.

 <Window x:Class="TestFont.Window1"
   xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
   xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
   Title="Window1" Height="130" Width="369" FontFamily="meiryo"  FontStyle="Italic">
</Window>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

撕心裂肺的伤痛 2024-08-24 09:16:58

窗口标题是窗口非客户端区域的一部分,并不是由 WPF 真正呈现的。更改该字体的唯一方法是修改显示属性(Windows 范围的设置)。

The window caption is part of the non-client area of the window is not really rendered by WPF. The only way you can change that font is by modifying your display properties (a Windows-wide setting).

稚然 2024-08-24 09:16:58

您无法更改标题文本的外观。它由使用的主题、个人设置等决定,因此根据用户的喜好,每台计算机上的设置都不同。

You can not change the look of the title text. It's decided by theme used, personal settings etc. so it's different on every computer according to the users liking.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文