I\'m struggling with making button first click to start a timer, second click to stop the timer and etc.
Can anybody help me? :)
private void button7_Cli
you can use this !!!!
private void button8_click(object sender, EventArgs e) { if (timer1.Enabled) { timer1.Stop(); } else { timer1.Start(); } }