how do you programatically invoke a listview label edit - Stack Overflow most recent 30 from stackoverflow.com2009-11-24T23:12:47Zhttp://stackoverflow.com/feeds/question/32103http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/32103/how-do-you-programatically-invoke-a-listview-label-edit1how do you programatically invoke a listview label editgeocoin2008-08-28T12:41:04Z2008-09-20T02:24:50Z
<p>in C# I'd like to invoke the label edit of a newly added item to a ListView.
basically, if I have a <em>click here to add</em> scenario, as soon as the new item is added, I want the text label to be in a user editable state.
Thanks!</p>
http://stackoverflow.com/questions/32103/how-do-you-programatically-invoke-a-listview-label-edit/32113#321132Answer by geocoin for how do you programatically invoke a listview label editgeocoin2008-08-28T12:44:05Z2008-08-28T22:25:31Z<p><a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.listviewitem.beginedit.aspx" rel="nofollow">found it!</a></p>
<pre><code>ListViewItem::BeginEdit();
</code></pre>