我有两个名为mainForm和helperForm的表单。在 mainForm 上我有一个按钮,在 helperForm 上我有一个richTextBox。我想做的是;单击 mainForm 上的按钮后,我想显示 helperForm,以及richtextbox 上的一些文本。使用下面的代码,我可以看到帮助表单,但是在按钮完成buttonClick事件内部的所有过程之后出现的文本......
主窗体
public partial class Form : Form
{
public HelperForm helperForm;
public MainForm()
{
InitializeComponent();
}
public void button_Click(object sender, EventArgs e)
{
helperForm= new HelperForm ();
helperForm.Show();
helperForm.richTextBox1.AppendText("Program started");
//doing process1
helperForm.richTextBox1.AppendText("Program start to check process1");
//doing process2
helperForm.richTextBox1.AppendText("Program start to check process2");
//doing process3
helperForm.richTextBox1.AppendText("Program start to check process3");
//doing process2
helperForm.richTextBox1.AppendText("All the process are done!");
helperForm.Close();
}