i'm working on this since a while but didn't solved my problem.
The Case:
I have list A which contains objects of Info. Info has the properties id, name and list B which contains objects of Details. Details has the properties id, Name and a bool.
Is it possible to bind list A to a ListView and show the property of an object from list B where the bool is true?
edit:
List B contains more than one object but only one of the objects has a true bool, the others have false. I want to show the Name of the object with the true bool in the GridViewColumn with Binding but didn't find a way till now