2

我正在尝试获取我的资源文件夹的 png 图像。我测试了这里写的解决方案:Add images to ListBox (c#, windows phone 7)。首先,我想为我的 ListBox 中的每个项目获取相同的图像。但我无法做到这一点。图片不显示。

这就是我在 xaml 中的列表的样子:

<ListBox x:Name="ProductList">
            <ListBox.ItemTemplate>
                <DataTemplate>
                    <StackPanel>
                        <TextBlock Text="{Binding Name}"/>
                        <Image Source="{Binding ImagePath}"  Stretch="None"/>
                    </StackPanel>
                </DataTemplate>
            </ListBox.ItemTemplate>
        </ListBox>

这就是我填充项目的方式:

List<ImageData1> productsList = new List<ImageData1>();

foreach (ProductItem item in ProductsTable)
{
    if (item.Category == chosenCategory.TrId)
    {
            ImageData1 img = new ImageData1();
            img.Name = item.Name;
            img.ImagePath = new Uri("Resources/img.png", UriKind.RelativeOrAbsolute);
            productsList.Add(img);
    }
}

ProductList.ItemsSource = productsList;

这是我保存图像数据的类:

public class ImageData1
{
    public Uri ImagePath
    {
        get;
        set;
    }

    public string Name
    {
        get;
        set;
    }
}
4

2 回答 2

2

尝试/在您的图像路径之前放置。喜欢/Resources/img.png。并尝试更改UriKind.RelativeOrAbsoluteUriKind.Relative. 并确保您的图像添加为ContentBuild Action图像属性)。这样它对我有用。

于 2013-01-31T15:43:00.890 回答
0

可能,您还可以使用以下汇编代码从当前应用程序中读取图像。

StreamResourceInfo info =Application.GetResourceStream(new Uri("Resources/img.png", UriKind.RelativeOrAbsolute));
var bitmap = new BitmapImage();
bitmap.SetSource(info.Stream);
img.Soure = bitmap;
于 2013-02-01T12:19:59.160 回答