c#里面TextBox控件显示数据不换行的问题
stringtemp="haha\nheihei";textBox1.Text=temp;如何使他显示出来换行?我已经设置过textBox1的Multiline为true...
string temp = "haha\nheihei";
textBox1.Text = temp;
如何使他显示出来换行?我已经设置过textBox1的Multiline为true了,但是还是不行 展开
textBox1.Text = temp;
如何使他显示出来换行?我已经设置过textBox1的Multiline为true了,但是还是不行 展开
6个回答
展开全部
string temp="haha"+Environment.NewLine+"heihei";
textBox1.Text=temp;
上面的Environment.NewLine获取当前系统的换行符。有时候\n不好用,就试试\r\n,实在不行,就用Environment.NewLine.
textBox1.Text=temp;
上面的Environment.NewLine获取当前系统的换行符。有时候\n不好用,就试试\r\n,实在不行,就用Environment.NewLine.
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
string temp = "haha\r\nheihei";
textBox1.Text = temp;
改成这样就可以了
textBox1.Text = temp;
改成这样就可以了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
在Page_Load中加上一句试试:
TextBox1.Attributes.Add("style", "overflow-y:hidden")
TextBox1.Attributes.Add("style", "overflow-y:hidden")
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
限制没行显示的字符数不就好了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
用\r\n
string temp = "haha\r\nheihei";
string temp = "haha\r\nheihei";
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询