下載數據如何從XML文件的下載數據WPF如何從XML文件
數據文件中的應用
XDocument dane = XDocument.Load("gpw.xml");
List<pozycjeGpw> listaGpw = new List<pozycjeGpw>();
private void listBox1_Loaded(object sender, RoutedEventArgs e)
{
}
private void button1_Click(object sender, RoutedEventArgs e)
{
listaGpw = (from item in dane.Descendants("pozycja")
select new pozycjeGpw()
{
nazwa_notowania = (item.Element("nazwa_notowania").Value),
biezacy = (item.Element("biezacy").Value),
zmiana = (item.Element("zmiana").Value),
zmiana2 = (item.Element("zmiana2").Value),
otwarcie = (item.Element("otwarci").Value),
max = (item.Element("max").Value),
min = (item.Element("min").Value),
}).ToList();
listaGpw.Insert(0, new pozycjeGpw() { nazwa_notowania = "", biezacy = "", zmiana = "", zmiana2 = "", otwarcie = "", max = "", min = "" });
}
我們需要更多地瞭解您所問的內容。你能展示XML內容並擴展你的問題嗎? – Xcalibur37