码迷,mamicode.com
首页 > Windows程序 > 详细

C# winform 查找指定节点值

时间:2015-04-03 09:39:52      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:c#   winform   xml   

 简单粗暴,直接上代码:


XmlDocument xmlDoc = new XmlDocument();

            try
            {
                xmlDoc.Load(Help.basePath);
                XmlNode root = xmlDoc.SelectSingleNode("//screenshot");
                if (root != null)
                {
                    string screenshotsavepath = root.SelectSingleNode("screenshotsavepath").InnerText;

                    //打开文件夹
              
                }
                else
                {
                    MessageBox.Show("亲,没有有效存储路径");
                }
            }
            catch (Exception ex)
            {
                //显示错误信息
                MessageBox.Show(ex.Message);

            }



Help.basePath-------------------文件路径

screenshot--------------------节点名

screenshotsavepath-----想要查找的节点


C# winform 查找指定节点值

标签:c#   winform   xml   

原文地址:http://blog.csdn.net/u014180504/article/details/44835015

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!