I want to save a FileInfo object to my list view items.
The list view is in details view. The items are added but the item text is not displayed. What to I have to do to get the list view to show the FileInfo::Name property.Code:class ListViewItemEx : ListViewItem { private FileInfo _info; public FileInfo Info { get { return _info; } set { _info = value; } } public ListViewItemEx(FileInfo fi) { _info = fi; } }
Any suggestions?
Mike B




Reply With Quote