本文介绍了在这种情况下如何换行?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
monoFlat_TextBox2.Text = "doing things";
System.Threading.Thread.Sleep((int)的System.TimeSpan.FromSeconds(3).TotalMilliseconds);     
System.Threading.Thread.Sleep((int)System.TimeSpan.FromSeconds(3).TotalMilliseconds);
monoFlat_TextBox2.Text =" done do things";
monoFlat_TextBox2.Text = "done doing things";
这是我当前的代码,但我希望在TextBox2的新行上完成工作
This is my current code but I want to have the done doing things be on a new line in the TextBox2
推荐答案
这篇关于在这种情况下如何换行?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!