views:

38

answers:

2

I am looking for a way like Social Networks site retrieve additional data when the last record is visible to user.

How I am able to do that for a ListView in Compact Framework (c# mobile app).

Still looking for answers 2

A: 

If you override ToString() on your objects, I would expect that you would get hit whenever the items are drawn.

John Knoeller
My object is not on the `view` level it sits in the `model`.
Pentium10
+1  A: 

You need to do a custom-drawn ListView. Even if you simply use the base implementation for the draing, the CDDS_ITEMPREPAINT will tell you the index of the item it's trying to paint. You can use that to determine where in the list you are.

ctacke