I have a listview with 2 columns LabelEdit = true. Now I have the below code written in KeyDown event
if (e.KeyData == Keys.F2 && lvwColumns.SelectedItems.Count > 0)
{
lvwColumns.SelectedItems[0].BeginEdit();
return;
}
Whenever I press F2 key the edit enables for the FIRST column. Is it possible to make edits in the SECOND column instead?