How can you use a ListView to show the user a collection of objects, and to manage those objects?
|
|
|
|
|
|
|
For the purpose of argument, here's our design goal: We've got a "monster" object, and that "monster" will have several "powers." The user interacts with the powers via a ListView item. First, we create a Power object. Give the object the following method:
where name is the name of the power, and a string. This ListViewItem will serve as a key, allowing us to identify and retrieve this power later. Next, we need to add somewhere in the Monster object to keep track of all these powers.
So now we need a way to add powers to the monster.
Ok, almost done! Now we've got a dictionary of ListViewItems which are tied to the monster's powers. Just grab the keys from that dictionary and stick them in a ListView:
Where powerList is the ListView we're adding the ListViewItems to. Alright, so we've got the ListViewItems in the ListView! Now, how do we interact with those? Make a button and then a function something like this:
And that's that. I hope you've found this helpful. I'm not sure if this was an intentional aspect of their design, but ListViews and Dictionaries blend together so amazingly well when you use a ListViewItem as a key that it's a joy! |
||||
|
