WPF - Binding a variable in an already bound ListBox?

Posted by Corey Ogburn on Stack Overflow See other posts from Stack Overflow or by Corey Ogburn
Published on 2010-06-11T20:22:20Z Indexed on 2010/06/12 13:13 UTC
Read the original article Hit count: 261

Filed under:
|
|

I really don't know how to title this question, but I need some help with binding to a ListBox.

I have an object, that contains (among other information) 2 properties that need to be bound in one ListBox. One of these is an ObservableCollection of objects, called Layers, and the other property holds an enum value of either Point, Line or Polygon, called SpatialType. These are to act as a legend to a map application. I have bound Layers to a ListBox, no problem, but inside the ListBox.ItemTemplate, I need to bind the single variable SpatialType to every Item in the ListBox. The problem I'm running into is that when I try to bind while inside the ListBox, the only variables I have access to are the properties of each Layer and I can't access any properties of the original bound class that holds the Layers (and the needed SpatialType property).

What can I do to get that piece of information bound inside the ItemTemplate without messing up a good MVVM architecture?

© Stack Overflow or respective owner

Related posts about databinding

Related posts about binding