I'm trying to create a ListView that displays an ObservableCollection and regardless of what I do with the ItemTemplate I can't get the image to actually display. Most of what I've been able to find deals with displaying an image as a property of the collection, but not when it is the collection. I have a feeling I'm just doing something stupid but I'm not able to figure it out on my own.
<ListView Visibility="{Binding HasImages, Converter={StaticResource BooleanToVisibleConverter}}" Height="Auto" ItemsSource="{Binding Images}">
<ListView.ItemTemplate>
<DataTemplate>
<Image></Image>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
private ObservableCollection<BitmapImage> _Images = new ObservableCollection<BitmapImage>();
public ObservableCollection<BitmapImage> Images
{
get { return _Images; }
set { _Images = value; RaisePropertyChanged(); }
}