List<Profile> listProf = new List<Profile>();
...
...
foreach (Profile p in listProf)
{
ListViewItem Item = new ListViewItem();
Item.Text = p.Name;
Item.Tag = p;
ListView1.Items.Add(Item);
ListView2.Items.Add(Item);
}
在這種情況下,我將如何將這個Item
兩個ListViews?我只是得到了我需要克隆它的錯誤。我怎樣才能做到這一點?即使ListView想要如此挑剔,我也不太確定。將ListViewItem添加到兩個或更多ListView Items集合?
如何將一個項目添加到多個ListViewCollection中?
你的男人之間的聖徒 – DarthSheldon