我想访问ItemCollection
包含来自Treeview
(称为OOB)的项目的内容。
if (OOB.Items.Count > 0)
{
ItemCollection items = OOB.Items;
foreach (TreeViewItem node in items)
foreach
抛出运行时错误:
无法将“System.Xml.XmlElement”类型的对象转换为“System.Windows.Controls.TreeViewItem”类型。
我可以在ItemCollection
我想从调试器访问的项目中看到信息:
如何访问元素,特别是元素名称?