private void button1_Click(object sender, EventArgs e)
        {
           Application.DoEvents();
            this.label1.Text = "步骤1";
            Application.DoEvents();
            System.Threading.Thread.Sleep(5000);

           Application.DoEvents();
            this.label1.Text = "步骤2";
            Application.DoEvents();
            System.Threading.Thread.Sleep(5000);

           Application.DoEvents();
            this.label1.Text = "步骤3";
            Application.DoEvents();
            System.Threading.Thread.Sleep(5000);

            Application.DoEvents();
            this.label1.Text = "完成";
            Application.DoEvents();
          
        }

相关文章:

  • 2022-12-23
  • 2021-10-15
  • 2022-01-10
  • 2021-06-15
  • 2022-12-23
  • 2021-06-20
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-02-22
  • 2021-09-18
  • 2022-02-25
相关资源
相似解决方案