G
Guest
Hi,
I am working on an app which - for a given period of time - frequently
receives messages in background thread (every 2-5 ms). These messages are
then translated and should be sent/added to ListView. I understand that I
should use VirtualMode here because there will for sure be a huge number of
messages. What I am not sure about is the following:
1) The total number of items is unknown. Can I dynamically change
VirtualListSize property without any drawback?
2) How can I force ListView to keep rolling its visible part up, as messages
are being received?
3) What would be the best option for underlying store/array? Perhaps
ArrayList and ArrayList.Add() method ?
Thanks !
I am working on an app which - for a given period of time - frequently
receives messages in background thread (every 2-5 ms). These messages are
then translated and should be sent/added to ListView. I understand that I
should use VirtualMode here because there will for sure be a huge number of
messages. What I am not sure about is the following:
1) The total number of items is unknown. Can I dynamically change
VirtualListSize property without any drawback?
2) How can I force ListView to keep rolling its visible part up, as messages
are being received?
3) What would be the best option for underlying store/array? Perhaps
ArrayList and ArrayList.Add() method ?
Thanks !