- 網格視圖被填充在WPF窗口。
- 在代碼後面有一個靜態列表(我想從一個xml文件中獲得)。
試圖靜態列表進入,我創建了以下格式毫升文件的XML file.For
<customers>
<customer Name="abc"/>
<customer Name="def"/>
</customers>
代碼隱藏:
Xdocument doc=Xdocument.load("customers.xml");
var customerList = (from e in doc.Descendants("Cusomters")
select new
{
CustomerName = e.Attribute("Name").Value
}).ToList();
我無法獲得客戶名稱從xml文件發送到customerList.I將不勝感激,如果有人可以幫助我前進。
試過但沒有工作。 – Macnique
@Macnique,更新。 –