Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how do you programmatically invoke a listview label edit

in C# I'd like to invoke the label edit of a newly added item to a ListView. basically, if I have a click here to add scenario, as soon as the new item is added, I want the text label to be in a user editable state. Thanks!

like image 349
geocoin Avatar asked Aug 28 '08 12:08

geocoin


1 Answers

found it!

ListViewItem::BeginEdit();
like image 103
geocoin Avatar answered Sep 20 '22 20:09

geocoin