winform 配置文件(app.config)修改

               var xDoc = new System.Xml.XmlDocument();
                xDoc.Load(Application.ExecutablePath + ".config"); //加载配置文件位置(应用程序.exe.config)

                var xNode = xDoc.SelectSingleNode("//appSettings"); //配置文件节点
                var xElem1=(System.Xml.XmlElement)xNode.SelectSingleNode("//add[@key='serverAddr']");
                if (xElem1 != null) xElem1.SetAttribute("value", this.txtServerAddr.Text.Trim());

                var xElem3=(System.Xml.XmlElement)xNode.SelectSingleNode("//add[@key='databaseName']");
                if (xElem3 != null) xElem3.SetAttribute("value", this.txtDataBaseName.Text.Trim());

                var xElem4=(System.Xml.XmlElement)xNode.SelectSingleNode("//add[@key='databasePwd']");
                if (xElem4 != null) xElem4.SetAttribute("value", this.txtDataBasePwd.Text.Trim());

                var xElem5=(System.Xml.XmlElement)xNode.SelectSingleNode("//add[@key='loactionName']");
                if (xElem5 != null) xElem5.SetAttribute("value", this.txtLocationName.Text.Trim());

                xDoc.Save(Application.ExecutablePath + ".config");

 

 

//配置文件信息



 
   
   
   
   
   
 

 
   
     
       
     

   

   
     
       
     

   

 

你可能感兴趣的:(C#)