如何获取要在 WPF ComboBox 中显示的 XML 属性?
我有一个简单的 XML 文档:
<?xml version="1.0" encoding="utf-8" ?>
<languages default="en">
<language code="en" name="English" />
<language code="de" name="Deutsch" />
<language code="es" name="Espanol" />
<language code="fr" name="Français" />
</languages>
我已将其 language
节点声明为 C# 中 ComboBox 的 ItemsSource
:
userLanguageComboBox.ItemsSource = languagesXml.Descendants("language");
中定义如下:
<ComboBox Name="userLanguageComboxBox" DisplayMemberPath="@name" />
ComboBox 显示在XAML 问题是,组合框生成四个空条目,它似乎找不到该属性(如果我省略 DisplayMemberPath
属性,则四个 language
节点显示为text):
我该如何解决此问题?
(我使用的是.NET 4.0。)
I've got a simple XML document:
<?xml version="1.0" encoding="utf-8" ?>
<languages default="en">
<language code="en" name="English" />
<language code="de" name="Deutsch" />
<language code="es" name="Espanol" />
<language code="fr" name="Français" />
</languages>
whose language
nodes I've declared as the ItemsSource
for a ComboBox in C#:
userLanguageComboBox.ItemsSource = languagesXml.Descendants("language");
The ComboBox displays is defined as such in XAML:
<ComboBox Name="userLanguageComboxBox" DisplayMemberPath="@name" />
The problem is, that the ComboBox generates four empty entries, it doesn't seem to find the attribute (If I leave out the DisplayMemberPath
property, the four language
nodes show up as text):
How can I fix this?
(I'm using .NET 4.0.)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 LINQ to XML,您可以使用以下方法获取所有名称属性:
将其绑定到组合框
Using LINQ to XML you can get all the name attributes using:
Bind this to the ComboBox