摘要: listview 添加行数据 private void FillList(List<PhoneBook> PB) { listView1.Items.Clear(); foreach (PhoneBook phoneBook in PB) { ListViewItem item = new ListViewItem(phoneBook.PhoneName); item.SubItems.AddRange(new string[] { phoneBook.PhoneType,phoneBook.PhoneNumber}); listView1.Items.Add(item); } l 阅读全文
posted @ 2013-05-14 22:13 才高远志 阅读(276) 评论(0) 推荐(0) 编辑