views:

1060

answers:

1

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!

+3  A: 

found it!

ListViewItem::BeginEdit();
geocoin