Make sure at least one item is selected, and then you can do
MessageBox.Show(lstView.SelectedItems[0].Tag.ToString());
If you have a specific object (e.g. an instance of Person) added to Tag, you can do
Person p = (Person) lstView.SelectedItems[0].Tag
and access instance properties
MessageBox.Show(p.Name);
source
share