This is nit-picky, I apologize, but the line
label.Text = $"Clicked {counter++} times!";
in MainForm.cs template file should be
label.Text = $"Clicked {++counter} times!";
PS -- Thanks for the MF project, and for doing project templates to get us started!! :-)
This is nit-picky, I apologize, but the line label.Text = $"Clicked {counter++} times!"; in MainForm.cs template file should be label.Text = $"Clicked {++counter} times!";
PS -- Thanks for the MF project, and for doing project templates to get us started!! :-)