Whats the best way to tie ListView item with a object so when i move the item form one listview to another then i would be still able to tell to what object its assigned.
For example, i have object Cards. All these are listed in a allCards ListView. I have another selectedCards ListView and a button what moves selected items from one listview to another. When im done my selection i need to get the list of the Card objects what moved to the selectedCards ListView.
Whats the best way to tie ListView item with a object so when i
Share
To expand on @CharithJ’s answer, this is how you would use the tag property:
Obviously you’ll need to adapt it to your own code, but that should get you started.