I\'ve ran into a bit of a wall with being able to bind data of my custom object list to a ListBox in WPF.
ListBox
This is the custom object:
public
The easiest way is to override ToString on your FileItem, (The listbox uses this to populate each entry)
FileItem
public override string ToString() { return Name; }