如何更改RichTextBox高度以适应C#中的新字体大小

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何更改RichTextBox高度以适应C#中的新字体大小相关的知识,希望对你有一定的参考价值。

我的应用程序允许用户更改RichTextBox中使用的字体,包括字体大小。我遇到的问题是虽然字体大小按预期变化,但RichTextBox的高度不会相应改变。需要保持RichTextBox高度,以便仅显示一行文本就足够了。

当字体被更改时,RichTextBox可能不包含任何文本,所以我正在尝试设置新的高度,如下所示:

Font FONT = new System.Drawing.Font("Microsoft Sans Serif", 27F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
var height = TextRenderer.MeasureText("|", FONT).Height;
this.richTextBoxInput.Height = height;

即使代码被执行,RichTextBox高度也不会改变。这是我如何初始化它:

this.richTextBoxInput.Anchor = System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right;
this.richTextBoxInput.BackColor = System.Drawing.Color.White;
this.richTextBoxInput.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.richTextBoxInput.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.richTextBoxInput.Location = new System.Drawing.Point(50, 52);
this.richTextBoxInput.Margin = new System.Windows.Forms.Padding(0);
this.richTextBoxInput.Name = "richTextBoxInput";
this.richTextBoxInput.ReadOnly = false;
this.richTextBoxInput.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.None;
this.richTextBoxInput.Size = new System.Drawing.Size(200, 20);
this.richTextBoxInput.TabIndex = 0;
this.richTextBoxInput.TabStop = false;
this.richTextBoxInput.Text = "<Input>";

有谁知道如何使这项工作?我正在使用.NET 4.5。

答案

尝试使用Custom RichTextBox或将以下内容添加到您自己的自定义控件中。以下代码不考虑边框宽度,因此我添加了固定的偏移量(10)。

    public class RichTextBoxCustom : RichTextBox
    {
        protected override void OnContentsResized(ContentsResizedEventArgs e)
        {
            base.OnContentsResized(e);
            this.Height = e.NewRectangle.Height + 10;
        }
    }

以上是关于如何更改RichTextBox高度以适应C#中的新字体大小的主要内容,如果未能解决你的问题,请参考以下文章

拉伸高度以适应本机反应中的内容

自动调整 TableViewCell 的高度以适应 iOS 6 中的 UIImageVIew

如何从 RichTextBox 中的光标位置选择前一个字符

如何更改 RichTextBox 段落间距?

如何让 UITableViewCell 调整高度以适应其内容?

如何更改 MFC 中的 VIEW 大小以适应输入图像?