Is ListView items editable?

  • Thread starter Thread starter Robert
  • Start date Start date
R

Robert

I can add items to the ListView but am wondering if the items are editable
either in places (like rename a file in Windows Explorer) or via some other
ways.

Any suggestions?
 
no, there is no in-place editing in the ListView. it would certainly be
possible to extend the ListView to allow this on the ItemCheck event,
but the easiest thing to do would be to give the user a textbox mirroring
their selection, allow them to edit it, and place the new value back in the
ListView's items collection.
--
Darren Shaffer
..NET Compact Framework MVP
Principal Architect
Connected Innovation
www.connectedinnovation.com
 
Back
Top