标题:TREEVIEW和XML
取消只看楼主
Amor
Rank: 1
等 级:新手上路
帖 子:30
专家分:0
注 册:2005-8-16
 问题点数:0 回复次数:1 
TREEVIEW和XML
private void populateTreeControl(System.Xml.XmlNode document,System.Windows.Forms.TreeNodeCollection nodes)
  {
   foreach (System.Xml.XmlNode node in document.ChildNodes)
   {
    string text = (node.Value != null ? node.Value : (node.Attributes != null && node.Attributes.Count > 0) ?node.Attributes[1].Value : node.Name); //A1
    TreeNode new_child = new TreeNode(text);
    nodes.Add(new_child);
    populateTreeControl(node, new_child.Nodes); //A2
   }
  }
大体是个什么意义??尤其是A1和A2
搜索更多相关主题的帖子: XML TREEVIEW 
2005-08-26 11:18
Amor
Rank: 1
等 级:新手上路
帖 子:30
专家分:0
注 册:2005-8-16
得分:0 
就是
string text = (node.Value != null ? node.Value : (node.Attributes != null && node.Attributes.Count > 0) ?node.Attributes[1].Value : node.Name);
这句话看得不是很明白.
2005-08-29 08:35



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-26087-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.014817 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved