I want to put images in my ListBox using Binding.
Below is the object containing the URI\'s:
_roomView.Room = new Room { Items = new
Instead of doing
DataContext = _roomView;
I did:
Mylist.ItemsSource = _roomView.Room.Items;
and in the XML:
The above shows "ImageUri" instead of Room.Items.ImageUri since I am already passing in the Rooom.Items.