2

I'm developping an application using the 3.5 Compact Framework on Windows Mobile 6.1. I have a ListView and I want to autoscroll this list when I add an item.

How can I do?

Nick
  • 10,309
  • 21
  • 97
  • 201

1 Answers1

8
     listView.EnsureVisible(listView.Items.Count - 1);
gliderkite
  • 8,828
  • 6
  • 44
  • 80