您好,登錄后才能下訂單哦!
在WPF中,可以通過以下兩種方法將ListBox控件的項綁定到圖片資源:
<ListBox ItemsSource="{Binding Items}">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal">
<Image Source="{Binding ImagePath}" Width="50" Height="50" />
<TextBlock Text="{Binding Name}" VerticalAlignment="Center" Margin="10,0,0,0" />
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
在ViewModel中,需要定義一個類來表示每個ListBox項的數據,包括圖片路徑和名稱:
public class Item
{
public string ImagePath { get; set; }
public string Name { get; set; }
}
public ObservableCollection<Item> Items { get; set; }
<ListBox ItemsSource="{Binding ImagePaths}">
<ListBox.ItemTemplate>
<DataTemplate>
<Image Source="{Binding}" Width="50" Height="50" />
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
在ViewModel中,將圖片資源的路徑存儲在一個ObservableCollection中:
public ObservableCollection<string> ImagePaths { get; set; }
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。