繁体   English   中英

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

[英]Add images to ListBox (c#, windows phone 7)

我正在开发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?

我使用的方法之一:

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。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM