First off, I am using a C# WindowsFormApplication. I want to do something such as:
int ChecklistItemVariable = 0;
And then when a button is pressed:
ChecklistItem{ChecklistItemVariable}.ForeColor = Color.LimeGreen
This way I don’t have to write an individual line of code for when the user is on each line of the checklist. The checklist items will be named “ChecklistItem1, ChecklistItem2” etc.