I am using the MVVM pattern, I have a view which creates a new ViewModel, after the user clicks save, this view is closed and a seperate view is opened which di
hmm talk about overkill, for a more simple approach and the one i imagine most will use....
for listview simply whack in:
listView1.EnsureVisible(listView1.Items.Count - 1);
And for Listbox simply whack in:
listBox1.SelectedIndex = listBox1.Items.Count - 1;
listBox1.SelectedIndex = -1;
To your listview item add (..etc) method... .. or whack it on a timer tick.
The above way under OP seems to much to do for me i am lazy... All code explains its self.