2
我想在xaml.cs的Button_Click事件中將ListBox綁定到Xml。 我的XML是簡單在Button_Click事件中將WPF列表框綁定到Xml?
<books>
<book>ABC/book>
<book>XYZ</book>
</books>
下面是我在做什麼..
在xaml.csXmlDocument x = new XmlDocument(); x.LoadXml(e.Result.ToString()); listbox1.ItemsSource = x;
和XAML
是
<ListBox x:Name="lstbxTrends" Margin="95,112,8,18" ItemsSource="{Binding XPath=Books}"> <ListBox.ItemTemplate> <DataTemplate> <TextBlock Text="{Binding [email protected]}" /> </DataTemplate> </ListBox.ItemTemplate> </ListBox>
但是沒有在Listbox中顯示..?
謝謝你們!