Hello...
I have Customer and Phones classes. I keep customers and theirs phones. When i select a customer in listBox, in listBox2 i can see that customers phones. But i need to do it in listView. i need to select a customer in listView and listBox2 must show the phones of it. For this i know that listviewItem is needed but couldnt do ..
Customer m = listView1.SelectedItems[0].Tag
{
listbox2.Items.Add(m.Phones[i]);
}
thanks...!