G
Guest
I have a question about how ListView works. I have a data structure of
several hundred records which I have used to fill up a ListView. Now, I
figured the ListView would take references to my data, but instead it looks
like it actually copies my data. I am assuming this, because when I alter
data in my original data structure, the data on the ListView does not change,
it retains the old data.
Two concerns of mine are:
Isn't this serious 'bloatware', to have a ListView just copy everything
instead of keeping references?
How then can I gracefully update data in my ListView whenever I alter
something in the original data?
Thanks for your time!
several hundred records which I have used to fill up a ListView. Now, I
figured the ListView would take references to my data, but instead it looks
like it actually copies my data. I am assuming this, because when I alter
data in my original data structure, the data on the ListView does not change,
it retains the old data.
Two concerns of mine are:
Isn't this serious 'bloatware', to have a ListView just copy everything
instead of keeping references?
How then can I gracefully update data in my ListView whenever I alter
something in the original data?
Thanks for your time!