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.
|
|
|
|
|
|
|
DataGridView is your friend SourceGrid is alternative |
||
|
|
|
|
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 |
||||
|
|
|
maybe this could help you: |
||
|
|
|
From the sounds of it, you might want to consider using the DataGridView instead. |
||
|
|
|
|
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. |
||
|
