using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Threading;namespace WindowsFormsApplication1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }        private void button1_Click(object sender, EventArgs e)
        {
            richbox.Text  = richbox.Text+("第一次显示\n");
            Thread.Sleep(3000);
            richbox.Text =  richbox.Text+("第二次显示\n");
            Thread.Sleep(3000);
            richbox.Text =  richbox.Text+("第三次显示\n");
        }
    }
}
我的意思是指。。点击按钮后显示第一个,三秒后显示第二个,三秒后显示第三个,但我这样写效果不是这样,是很长时间后一次性显示出这三句我是新手,王高手指条明路,谢谢