将图像添加到ListBox(c#,windowsphone 7)

本文关键字:windowsphone 图像 添加 ListBox | 更新日期: 2023-09-27 18:25:01

我正在开发Windows Phone 7,我需要将图像添加到ListBox中。

我想使用C#代码,而不是XAML。

我读过它,但每个人都使用BitmapImage,我无法在Windows Phone 7上使用它。

我有XAML代码:

<StackPanel Margin="0,0,0,17">
    <local:MatchDates Adress="http://soccernet.espn.go.com/results/_/league/esp.1/spanish-la-liga?cc=57393" />
</StackPanel>

和我的类MatchDates:中的C#函数

    void add_items(List<List<string>> code)
    {
        if (code.Count == 0)
            this.Items.Add("no mathes");
        else
        {
            foreach (List<string> temp1 in code)
            {
                foreach (string temp2 in temp1)
                {
                    this.Items.Add(temp2);
                }
                this.Items.Add("---------------------------------");
            }
        }
    }

如何在函数add_items中添加图像?

此代码:

    Uri uri = new Uri("/eng.png", UriKind.Relative);
    BitmapImage bitmap = new BitmapImage(uri);
    Image img = new Image();
    img.Height = 30;
    img.Width = 30;
    img.Source = bitmap;
    this.Items.Add(img);
    this.Items.Add(temp2);

只显示空白,如何将图像添加到ListBox?

将图像添加到ListBox(c#,windowsphone 7)

我使用的方法之一:

XAML:

<ListBox Name="lstView" ItemsSource="{Binding}">
   <ListBox.ItemTemplate>
      <DataTemplate>
          <StackPanel Orientation="Horizontal">
             <Image Source="{Binding ImagePath}"></Image>
             <TextBlock Text="{Binding Name}"></TextBlock>
        </StackPanel>
      </DataTemplate>
   </ListBox.ItemTemplate>
</ListBox>

C#:

public class Article
{
    public string Name { get; set; }
    public string ImagePath { get; set; }
}

 Article article1 = new Article() { Name = "name1", ImagePath = "path of image 1" };
 Article article2 = new Article() { Name = "name2", ImagePath = "path of image 2" };
 var articles = new List<Article>();
 articles.Add(article1);
 articles.Add(article2);
 lstView.DataContext = articles;

为了检索文章,我使用WCF服务。

支持BitmapImage。您必须将BitmapImage声明为ImageSource。