为什么 RichTextBox 忽略我的 RTF 中的 \fs?

发布于 2024-07-30 06:33:04 字数 259 浏览 1 评论 0原文

我想使用 RichTextBox 在 WinForms 应用程序的起始页中显示一些文本,如下所示:

richTextBox1.Rtf = @"{\rtf1\pard\fs40 Hello World\par }";

RichTextBox 忽略我的字体大小指令 (\fs40)。 它适用于 Word 和写字板。

我究竟做错了什么?

I'd like to use a RichTextBox to display some text in the start page of my WinForms application, as follows:

richTextBox1.Rtf = @"{\rtf1\pard\fs40 Hello World\par }";

The RichTextBox ignores my font-size directive (\fs40). It works in both Word and WordPad.

What am I doing wrong?

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

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

发布评论

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

评论(1

终弃我 2024-08-06 06:33:04

事实证明,我在对话框构造函数中有以下内容:

InitializeComponent();
this.Font = SystemFonts.DialogFont;

...这会导致对话框上的所有控件(以及用户控件上的控件)忽略字体设置。

我想我会问另一个问题。

It turns out that I had the following in the dialog box constructor:

InitializeComponent();
this.Font = SystemFonts.DialogFont;

...this causes all controls (and controls on user controls) on the dialog to ignore font settings.

I think I'll ask another question about that instead.

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