how can autoscroll the listview, if add an listviewitem to listview. That can i do, with this:
this.listView1.EnsureVisible(this.listView1.Items.Count - 1);
But i dont want to add this line after all Item.Add() function. I want do this with an listview event, which i should use?
Is there an event like listView1_ItemAdded()! What could i use?
Bevor i thanks all answers.