在c#中的ListBox中使用for循环动态显示图像

时间:2014-12-22 12:30:47

标签: c# for-loop listbox windows-phone-8.1

我想在ListBox中动态显示图片,有一个图片网址,我必须显示该网址中的图片。

这是我的网址:

XDocument doc = XDocument.Parse(e.Result);
var nodes = doc.Descendants("row").ToList();

for (int i = 0; i < nodes.Count; i++)
{
   Id = nodes[i].Element("Id").Value;

   string uri = "https://www.myabc.com/ABC/getDocument.htm?name=" + name + "&password=" + pwd + "&Id=" + Id";


List<LIST> list = new List<LIST>();

list = (from query in doc.Descendants("row")
        select new LIST
        {
           img = uri
        }
}

listBox1.DataContext = list;

如何在ListBox中显示它? 任何帮助将不胜感激。

谢谢!

0 个答案:

没有答案