The WP7 list gets an item in the viewport (similar to the agenda on the calendar)

I am trying to imitate the list on the "agenda" in the WP7 calendar. If you scroll through the list, the date will change from the top.

So, is there a way to determine which item the user is looking for in the list?

+4
source share
1 answer

Take a look at this implementation of LazyListBox. This ListBox implementation checks which items are visible on the screen. With this information you can perform any action you want.

+2
source

All Articles