My final(?) Task List

Nice course. Modified the functionality of mine quite a bit. Hints in the image.


Thanks, Gary

1 Like

Congratulations on your final task list.

Task Details! I like it!

Thanks. Probably going to take it one more level - have a task category (add xxx feature), and the active and completed task list(s) as shown will be subtasks under each category. And if I can figure out how, make each category collapsible.

A bit of psuedocode to get you along your way with that…

Foldout newCategory = new Foldout();
foreach (Task task in TasksWithCategory(category)
{
    //Setup task UI element
    newCategory.Add(newTaskElement);
}
root.Add(newCategory);
1 Like

It’s that easy? Guess I should have looked into that. Would have done it that way from the start. It’s fun to see what I can do with the new stuff I learn, but in the end, I’m still not sure if I won’t just end up editing a change.log with vi. :roll_eyes:

Fantastic work @MajorGonzo! I love the additions you’ve made to the basic template :slight_smile:

HI! I’m trying to replicate what youve created to some extent. I would definitely like to know more about how you went about creating your task list as I would find it very usefull for me and my team of friends! Any and all help is appreciated :slight_smile:

Privacy & Terms