简体   繁体   中英

C# Resize textbox to fit content using c#

I'm having a program where there will be notes in the textbox. I'd like the textbox to resize itself, so it fit the content.

在此输入图像描述

 private void rg_pending_RowFormatting(object sender, RowFormattingEventArgs e)
        {
            which code i will place here
        }

try this

Size size = TextRenderer.MeasureText(textBox1.Text, textBox1.Font);
textBox1.Width = size.Width;
textBox1.Height = size.Height;

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM