我有一个MainForm和一些组件(RichTextBox,button,2个textBoxes)。
当我单击我的按钮时,我的应用程序会在richtextbox中写入一些文本。在richtextBox中进行一些更改并再次单击按钮后,我仍然在richtextbox上看到旧文本。
每次单击按钮时,如何刷新MainForm并清除richtextBox?
我尝试了MainForm.Refresh();
和richtextBox.Clear();
,但没有运气!
答案 0 :(得分:0)
使用richtextBox.RTF = String.Empty;
清除richtext框中的文本。
然后在单击按钮时设置RTF
。