I’ve tried to find answers on MSDN but failed.
here is my code:
ListView listView1 = new ListView();
listView1.Bounds = new Rectangle(new Point(10, 10), new Size(300, 200));
listView1.View = View.Details;
listView1.LabelEdit = true; //set here
listView1.AllowColumnReorder = true;
listView1.CheckBoxes = true;
listView1.FullRowSelect = true;
listView1.GridLines = true; // show as grid
listView1.Sorting = SortOrder.Ascending;
this could only allow me to edit the first column of the list view. because only the first column is the label of each list view item.
what i want to do is edit every gird(list view item). any good suggestion?
Try that: