vote up 3 vote down star

I am looking to create an editable ListView in a C# winforms application where a user may double click on a cell in order to change its contents. It would be great if someone could provide my with some guidance and/or an example. I am not looking to use any commercial products.

flag

77% accept rate

5 Answers

vote up 0 vote down

DataGridView is your friend SourceGrid is alternative

link|flag
vote up 1 vote down

An ObjectListView will do exactly that and much more. It is a wrapper around a normal .NET ListView. It is open source.

Its website has a Getting Started to help you begin, as well as a whole page devoted to cell editing

link|flag
Thanks for your response. This custom control looks interesting, but may be overkill for what I'm trying to do. I shall experiment with it nonetheless. – transmogrify May 13 at 15:41
Actually, it's not a custom control really. It's just a helpful wrapper around a plain ListView. But we won't tell anyone that :) – Grammarian May 16 at 18:04
vote up -1 vote down

maybe this could help you:

msdn:How to create a ListView with Editable Cells

link|flag
This is a WPF article. Is that what is desired, or are we looking at straight WinForms here? The tags indicate WinForms. – Simon Gillbee Apr 30 at 20:07
vote up 0 vote down

From the sounds of it, you might want to consider using the DataGridView instead.

DataGridView (MSDN)

link|flag
vote up 2 vote down

You're asking the wrong question :)

A ListView is not the correct control. Use the DataGridView control. It can be configured to look just like a ListView, but it supports in-place editing of cells.

link|flag
That's a matter of opinion. The DataGridView doesn't always fit the use scenario or provide the required look-and-feel. However, it is a possible alternative, depending on the goals of the OP. – Jeff Yates Apr 30 at 19:33

Your Answer

Get an OpenID
or

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