To scroll to the end of a listview in C# and VB.NET you can use the following snippet.
Sample C# / VB.NET
listView1.EnsureVisible(listView1.Items.Count - 1);
All the Code Snippets and Samples you need
To scroll to the end of a listview in C# and VB.NET you can use the following snippet.
listView1.EnsureVisible(listView1.Items.Count - 1);
You must be logged in to post a comment.
RT @CodeSnippetsNET: How to scroll to the end of a listview in .NET http://t.co/A5qfU9CiUN #csharp #vb #dotnet #dev