vote up 0 vote down star

I'm coding in VS2008 using C#.

On my form, I have a ListView control. Now, it's purpose is for the user to add items to it. However, each new item is added AFTER the last item in the list.

Is there any way to have each new item be put as the first item in the list?

flag

2 Answers

vote up 5 vote down

Use Insert into 0 index or your own choice.

See MSDN's reference

listview1.Items.Insert(0, newListviewItem);

link|flag
vote up 4 vote down

Instead of using the ListView.Add method, use the ListView.Insert method.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.