C#textBox无法换行
stringmessage="";stringtime="";SqlConnectionconnection=newSqlConnection(DBHelper.conn...
string message = "";
string time = "";
SqlConnection connection = new SqlConnection(DBHelper.connString);
string sql = string.Format("select * from Messages where FromUserId={0} and ToUserId={1} and MessageState = 0", UserHelper.friendsId, UserHelper.userId);
SqlCommand command = new SqlCommand(sql, connection);
connection.Open();
SqlDataReader datareader = command.ExecuteReader();
while (datareader.Read())
{
message = Convert.ToString(datareader["Message"]).ToString();
time = Convert.ToDateTime(datareader["MessageTime"]).ToString();
txtShow.Text += string.Format("{0} {1}\r \r{2}\r", UserHelper.friendsName, time, message);
}
datareader.Close();
connection.Close();
麻烦帮我看下这段代码txtShow.Text += string.Format("{0} {1}\r \r{2}\r", 为什么我用\r或者\n都换不了行 麻烦大家帮帮忙
MultiLine默认就是True的 展开
string time = "";
SqlConnection connection = new SqlConnection(DBHelper.connString);
string sql = string.Format("select * from Messages where FromUserId={0} and ToUserId={1} and MessageState = 0", UserHelper.friendsId, UserHelper.userId);
SqlCommand command = new SqlCommand(sql, connection);
connection.Open();
SqlDataReader datareader = command.ExecuteReader();
while (datareader.Read())
{
message = Convert.ToString(datareader["Message"]).ToString();
time = Convert.ToDateTime(datareader["MessageTime"]).ToString();
txtShow.Text += string.Format("{0} {1}\r \r{2}\r", UserHelper.friendsName, time, message);
}
datareader.Close();
connection.Close();
麻烦帮我看下这段代码txtShow.Text += string.Format("{0} {1}\r \r{2}\r", 为什么我用\r或者\n都换不了行 麻烦大家帮帮忙
MultiLine默认就是True的 展开
4个回答
展开全部
要让一个Windows Form的TextBox显示多行文本就得把它的Multiline属性设置为true。
比如:
aTextBox.Text = "First Line" +
Environment.NewLine(这样最好) + "Second Line" +
Environment.NewLine + "Third Line";
比如:
aTextBox.Text = "First Line" +
Environment.NewLine(这样最好) + "Second Line" +
Environment.NewLine + "Third Line";
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
1.TextBox 要设置成 MultiLine 模式
2.有些情况下 \r 不会换行,试着用\r\n 或者.最好是用 System.Environment.NewLine
2.有些情况下 \r 不会换行,试着用\r\n 或者.最好是用 System.Environment.NewLine
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
txtshow的属性改成多行muti-line了么?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询