我試着去圖像列表綁定到一個列表框,但我得到的是型號名稱綁定圖像列表到ListBox
<ListBox x:Name="PhotosListBox" ItemsSource="{Binding MyImages}" />
的MyImages名單是List<BitMapImages>
權現在它只是返回一個列表System.Windows.Media.Imaging.BitmapImage
而不是顯示圖像
編輯 有關進一步的參考,這裏是最終的代碼。
<ListBox x:Name="PhotosListBox" ItemsSource="{Binding MyImages}" >
<ListBox.ItemTemplate>
<DataTemplate>
<Image Source="{Binding}" Stretch="Uniform"></Image>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
接受devdigital的答案,僅僅因爲它是1分鐘。更快,但感謝您的幫助。 – gulbaek