Ejemplo n.º 1
0
        public string GetXPath()
        {
            StringBuilder sb     = new StringBuilder();
            XListViewItem parent = _parent as XListViewItem;

            if (parent != null)
            {
                sb.Append(parent.GetXPath());
            }
            sb.Append('/').Append(NodeName);
            return(sb.ToString());
        }