它具有以下属性:
> multiline = true
> worDWrap = true
我需要设置哪些文本框的其他属性才能使以下内容成为可能?
>盒子的宽度应该是固定的
>根据文本返回的大小自动调整框的高度,例如,如果文本运行到3行,则调整为3行高.
public partial class Form1 : Form{ private const int EM_GETliNECOUNT = 0xba; [Dllimport("user32",EntryPoint = "SendMessageA",CharSet = CharSet.Ansi,SetLastError = true,ExactSpelling = true)] private static extern int SendMessage(int hwnd,int wMsg,int wParam,int lParam); public Form1() { InitializeComponent(); } private voID textBox1_TextChanged(object sender,EventArgs e) { var numberOflines = SendMessage(textBox1.Handle.ToInt32(),EM_GETliNECOUNT,0); this.textBox1.Height = (textBox1.Font.Height + 2) * numberOflines; }}总结
以上是内存溢出为你收集整理的c# – 多行文本框根据文本量自动调整高度全部内容,希望文章能够帮你解决c# – 多行文本框根据文本量自动调整高度所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)