我想更新包含在 ListView 中的 ListviewItem 中的数据。The idea is when a row of the listview is selected, I click on a button and the data is updated .
我有这个代码:
ListView listView1 = new System.Windows.Forms.ListView();
ListViewItem lv1 = new ListViewItem("me");
lv1.SubItems.Add("my brother");
listView1.Items.Add(lv1);
Button myB = new System.Windows.Forms.Button();
private void myB_Click(object sender, EventArgs e)
{
listView1.SelectedItems[0] ....... ;
}
我知道如何进一步访问将“我的兄弟”的值修改为“我的妹妹”。
提前致谢。