DevExpress 和 C# 字体更改

发布于 2024-07-24 16:24:23 字数 209 浏览 2 评论 0原文

我正在尝试更改 C# 程序中 DevExpress 实用程序中的默认字体。 现在我正在使用: DevExpress.Utils.AppearanceObject.DefaultFont = font; 但是,此代码仅更改表单上的菜单字体,它应该更改所有内容。 我还尝试枚举表单上的控件并更改类似问题中提到的文本,但这也不起作用。 希望有人知道如何使用 DevExpress 做到这一点......

I am trying to change the default font in a DevExpress utility within a C# program. Right now I'm using: DevExpress.Utils.AppearanceObject.DefaultFont = font;
However, this code is only changing the menu font on the form and it should change all of it. I've also tried enumerating through the controls on the form and changing the text as that was mentioned in a similar question, but that didn't work either. Hopefully someone knows how to do this with DevExpress...

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

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

发布评论

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

评论(1

不再见 2024-07-31 16:24:23

您需要在InitializeComponents()或Application.Run之前调用DevExpress.Utils.AppearanceObject.DefaultFont = YourFont。

static void Main() 
{
         DevExpress.Utils.AppearanceObject.DefaultFont = new Font(your font);
         Application.Run(new Form1());
}

You need to call DevExpress.Utils.AppearanceObject.DefaultFont = YourFont before the InitializeComponents() or Application.Run.

static void Main() 
{
         DevExpress.Utils.AppearanceObject.DefaultFont = new Font(your font);
         Application.Run(new Form1());
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文