Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 MainForm 和一些组件(RichTextBox、按钮、2 个文本框)。
当我单击我的按钮时,我的应用程序会在 Richtextbox 中写入一些文本。在richtextbox中进行一些更改并再次单击按钮后,我仍然看到richtextbox上的旧文本。
每次单击按钮时,如何使 MainForm 刷新并清除richtextBox?
我试过了MainForm.Refresh();,richtextBox.Clear();但没有运气!
MainForm.Refresh();
richtextBox.Clear();
用于richtextBox.RTF = String.Empty; 清除富文本框中的文本。
richtextBox.RTF = String.Empty;
然后RTF在单击按钮时设置。
RTF