ListView srcollbar ?

G

Grei

how to manipulate ListView scrollbar?

let's say i want to move Horizontal/Vertical scroll to some position.
Also i need to read this position.
 
R

RCS

Well, if you can get a handle on the item, you could do this:

this.listView1.SelectedItems[0].EnsureVisible();

(assuming you wanted to ensure that the first selected item is visible..)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top