I have a collection (IList) bind to ListView, now, by default Foo is bind to item in the list view, but I want to bind wrapper of (Foo) = Goo to each list view item.
IList is returned from the system API which returns virtualized list of item of Foo, but in my list view item, i want to bind custom object which is a wrapper of Foo=Goo. One solution is to create list of Goo from list of Foo, unfortunately that is not possible in this case, any converter approach available in this case.
Any help is appreciated.