Windows Phone 7 XML填充到列表框查询
本文关键字:列表 查询 填充 Phone XML Windows | 更新日期: 2023-09-27 18:09:01
我有一个有多个记录的XML。我想使用下面的代码将这些记录填充到列表框中。
void wc_DownloadStringCompleted(object sender, DownloadStringCompletedEventArgs e)
{
if (e.Error != null)
{
System.Diagnostics.Debug.WriteLine("Error: "+e);
}
XElement coupon = XElement.Parse(e.Result);
MainListBox.ItemsSource = from query in coupon.Descendants("cs")
select new ViewModels.LoadCoupon()
{
CouponName = (string)query.Element("c").Attribute("t"),
//MerchantImage = dB.getBaseUri() + "images/merchant/" + (string)query.Element("ms").Element("m").Element("id")
MerchantImage = dB.getBaseUri() + "images/merchant/" + (string)query.Element("c").Attribute("mId") + ".png"
};
}
MainListBox是我的列表框。使用上面的代码,我只能填充一条记录。我知道我错过了什么。任何人都可以让我知道我需要做什么,以便从XML显示多个记录。我已经复制了我正在使用的示例XML。谢谢你。
<d>
<ms>
<m id="9921" n="The Book Company" />
<m id="6333" n="Earth Rental" />
<m id="6329" n="The Organic Baker" />
<m id="6331" n="News Stand" />
<m id="6327" n="The Jam Company" />
<m id="6325" n="The Fruit Company" />
</ms>
<cs>
<c id="14533" mId="9921" t="50% Off Any Book Purchase">
<ls>
<l id="40145" lng="-0.0724" lat="51.5024" d="4.97" dim="45.91" intX="" intY="" intL="" />
</ls>
<cats>
<cat id="41" />
<cat id="43" />
</cats>
<as />
</c>
<c id="14533" mId="9921" t="50% Off Any Book Purchase">
<ls>
<l id="40145" lng="-0.0724" lat="51.5024" d="4.97" dim="45.91" intX="" intY="" intL="" />
</ls>
<cats>
<cat id="41" />
<cat id="43" />
</cats>
<as />
</c>
<c id="14533" mId="9921" t="50% Off Any Book Purchase">
<ls>
<l id="40145" lng="-0.0724" lat="51.5024" d="4.97" dim="45.91" intX="" intY="" intL="" />
</ls>
<cats>
<cat id="41" />
<cat id="43" />
</cats>
<as />
</c>
</cs>
</d>
你只有一个cs
元素,所以它只产生一个元素。我想你需要这个:
// Note the use of Descendants("c") here
MainListBox.ItemsSource = from query in coupon.Descendants("c")
select new ViewModels.LoadCoupon()
{
CouponName = (string)query.Attribute("t"),
MerchantImage = dB.getBaseUri() +
"images/merchant/" +
(string)query.Attribute("mId") +
".png"
};
编辑:要找到一个特定的元素,我会使用:
var match = coupon.Descendants("c")
.Where(c => (string) c.Attribute("mId") == mId)
.Single();