I am a beginner and I am struggling to make an app. Can you guys help me?

Basically I would like to make a checklist of different texts and after pressing the button 'save' i would like the app to make a final report that shows how many times the texts in the checklist are ticked. How should i make the coding? thanks!

What have you tried so far? Show your relevant blocks/screenshots.

Start with a global init of a variable scores, initially an empty dictionary.

Each time a text value is clicked, add 1 to the value in that dictionary for that key, default 0.

When done, loop through the dictionary and build a summary Label.Text of
text:count,
text:count,
text:count,
...