I try to experiment with Thread.Sleep(). I created basic Windows Forms application with one button.
Thread.Sleep()
private void button1_Click(object sender, Ev
For that you better use a Timer but if you want your current code to work you need to add Application.DoEvents(); after you update the button.Label += "."
Timer
Application.DoEvents();
button.Label += "."