Over the past few months, my return to classes slowed down my coding progress. However, this weekend, I finally found time to complete the first version of my To Do List project.
This initial release includes some key features:
Tasks can now be marked as "To Do", "Doing" or "Done".
The task list can now be saved as a text file.
Users can load a previously saved list.
To bring this to life, I learned about dictionaries, a data structure that pairs keys with values - that I used to associating tasks with their states. I also had to explore about persistence and file management, using System.IO, which allowed me to implement the save and load functionality.
The user interface remains a straightforward Windows Form, built with textboxes, labels, buttons and a listbox. When saving a list, a standard system dialog pops up to let users choose their files location. I added some basic validation to prevent errors, like handling empty entries, and set a default task state to ensure the task-state pairing works smoothly.
I´ve included a short video demo to show how it works:
Comments
Post a Comment