Hi everyone,
I have a listview, where vertical scrollbar is there. On mouse scroll records in the listview selected one by one. What i want
is that, once the last item selected in the listview mousce scrolling operation have to stop. how to do that.
i am using C# with windows form.
regards,
BB
Loading
Farooq AzamPosted Dec 30, 2009, 5:17 AM
private void listView1_SelectedIndexChanged(object sender, EventArgs e)
{
if (listView1.Items[listView1.Items.Count - 1].Selected)
{
listView1.Scrollable = false;
}
else
listView1.Scrollable = true;
}
}
Thanks