如何以编程方式在 XAML 列表框中显示 XML 数据?
我有一个 XML 文件,每个元素都有产品名称及其价格。
我有一个带有列表框的 XAML 文件。
如何在 C# 中以编程方式在列表框中显示 XML 文件中的所有项目?谢谢。
这是我的 XML 文件,其中包含 3 个示例产品:
<?xml version="1.0" encoding="UTF-8"?>
<dataroot xmlns:od="urn:schemas-microsoft-com:officedata" generated="2011-09-20T15:04:12">
<Product>
<Name>Red Chair</Name>
<Price>29.5</Price>
</Product>
<Product>
<Name>Blue Chair</Name>
<Price>27</Price>
</Product>
<Product>
<Name>Round Table</Name>
<Price>31</Price>
</Product>
</dataroot>
这是我的 XAML:
<Window x:Class="DockPanel.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Inventory" Height="350" Width="525">
<DockPanel>
<ListBox Name="listBox1" Margin="10" >
</ListBox>
</DockPanel>
I have an XML file, each element has name of a product and it's price.
I have a XAML file with a listbox.
How do I display all the items in the XML file in the listbox programmatically in C#? Thanks.
Here is my XML file with 3 sample products:
<?xml version="1.0" encoding="UTF-8"?>
<dataroot xmlns:od="urn:schemas-microsoft-com:officedata" generated="2011-09-20T15:04:12">
<Product>
<Name>Red Chair</Name>
<Price>29.5</Price>
</Product>
<Product>
<Name>Blue Chair</Name>
<Price>27</Price>
</Product>
<Product>
<Name>Round Table</Name>
<Price>31</Price>
</Product>
</dataroot>
Here's my XAML:
<Window x:Class="DockPanel.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Inventory" Height="350" Width="525">
<DockPanel>
<ListBox Name="listBox1" Margin="10" >
</ListBox>
</DockPanel>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您想要使用 XmlDataProvider(此处解释 )。您需要在资源中取出提供程序,指定路径以获取要显示的数据,然后将 ItemsSource 绑定到资源
You want to use an XmlDataProvider (explained here). You'll need to out the provider in your Resources, speci path to get the data you want displayed, and then bind your ItemsSource to the resource