我环顾四周,但是我能找到的所有例子都使用了XAML,这使得解决方案过于静态。这就是我想要做的事情:
我想从运行时指定的XML文件中填充DataGrid的列,行和属性。没有关于DataGrid属性的任何信息都可以修复; XML将其驱动到最后的细节(因此,为什么我看到的XAML示例还不够)。
XML文件的详细信息是打开的,因此任何布局都可以,但作为示例:
<data>
<row Column="Col 1" Value="100" />
<row Column="Col 2" Value ="200" />
</data>
将产生一个名为Column&amp;的2列网格。值分别为值(“Col 1”,100)&amp;第1行和第1行(“Col 2”,200) 2,分别。
同样,我对完全不同的XML没有任何问题,所以我会采取有效的方法。
这样的东西似乎非常有用,因为它允许在各种域中创建通用数据查看组件。 XML将为传输结构化数据提供方便的通用格式,DataGrid将提供丰富的查看体验。
答案 0 :(得分:3)
感谢所有花时间阅读或回复我的请求的人。我想出了如何做到这一点,并在下面包含一个代码片段:
using System.Xml.Linq; // Required for XElement...
using System.Collections; // Required for Hashtable
private void InitGridFromXML(string xmlPath)
{
var data = XElement.Load(xmlPath);
// Set Grid data to row nodes (NOTE: grid = DataGrid member)
var elements = data.Elements("row");
grid.ItemsSource = elements;
// Create grid columns from node attributes. A hashtable ensures
// only one column per attribute since this iterates through all
// attributes in all nodes. This way, the grid can handle nodes with
// mutually different attribute sets.
var cols = new Hashtable();
foreach (var attr in elements.Attributes())
{
var col = attr.Name.LocalName;
// Only add col if it wasn't added before
if (!cols.Contains(col))
{
// Mark col as added
cols[col] = true;
// Add a column with the title of the attribute and bind to its
// value
grid.Columns.Add(new DataGridTextColumn
{
Header = col,
Binding = new Binding("Attribute[" + col + "].Value")
});
}
}
}
答案 1 :(得分:0)
您可以将XML序列化为集合并绑定该集合。
您可以从XML创建数据表并将其绑定到数据网格。
只要您拥有主要详细信息格式的数据,无论您将其放入何种结构都无关紧要。
如果你喜欢XML,
以行和列值显示数据。