为什么 RichTextBox 忽略我的 RTF 中的 \fs?
我想使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
事实证明,我在对话框构造函数中有以下内容:
...这会导致对话框上的所有控件(以及用户控件上的控件)忽略字体设置。
我想我会问另一个问题。
It turns out that I had the following in the dialog box constructor:
...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.