C\#winfrom 읽 기 수정 xml 구현

5430 단어 C#xml읽 기winfrom
본 논문 의 예 는 winfrom 가 xml 을 수정 하 는 구체 적 인 코드 를 읽 기 위해 공유 하 였 으 며,구체 적 인 내용 은 다음 과 같 습 니 다.
winfrom 창 에 텍스트 상자,단추 2 개,panle 을 놓 습 니 다.다음 그림 입 니 다.

form.cs 파일 의 코드:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Xml;


namespace XMLConfiger
{
 public partial class Form1 : Form
 {
  public Form1()
  {
   InitializeComponent();
  }
   public string Path;
   xmlConfig xmlconfig;
  //  xml  
  private void button1_Click(object sender, EventArgs e)
  {


   OpenFileDialog fileName = new OpenFileDialog();//          
   fileName.InitialDirectory = Application.StartupPath;//       ,     exe         
   fileName.Filter = "  XML  |*.XML";//           
   fileName.FilterIndex = 2;//               
   fileName.RestoreDirectory = true;//                
   if (fileName.ShowDialog() == DialogResult.OK)
   {
     Path = fileName.FileName.ToString();//           
     Name = Path.Substring(Path.LastIndexOf("\\") + 1);//               
     xmlconfig = new xmlConfig(Path);
     int count = xmlconfig.GetCount();
     int ysplit = 30;
     int x1 = 3;
     for (int i = 0; i < count; i++)
     {
       Label lb = new Label();
       lb.Text = xmlconfig.GetName(i).ToString();
       lb.Tag = "";
       lb.Size = new System.Drawing.Size(60, 23);
       lb.AutoSize = false;
       TextBox tb = new TextBox();
       tb.Text = xmlconfig.GetXmlNode(i).ToString();
       tb.Tag = i;
       lb.Location = new Point(x1, i * ysplit);
       tb.Location = new Point(x1 + lb.Size.Width + 10, i * ysplit);
       panel1.Controls.Add(lb);
       panel1.Controls.Add(tb);
      
     }


     
  
   }
  }
  //  xml  
  private void button2_Click(object sender, EventArgs e)
  {
   for (int i = 0; i < this.panel1.Controls.Count; i++)
   {
    if (this.panel1.Controls[i].Tag != null && this.panel1.Controls[i].Tag.ToString() != "")
     {
      TextBox textbox1 = (TextBox)(this.panel1.Controls[i]);
      xmlconfig.SavaXMLConfig(Convert.ToInt32(textbox1.Tag), textbox1.Text);
     }
   }


   xmlconfig.SavaConfig();
  }

  
 }
}
xmlConfig.cs 의 코드:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml;
using System.IO;
using System.Data;
using System.Windows.Forms;


namespace XMLConfiger
{
 public class xmlConfig
 {
  public int count = 0;
  public string path="";
  private List<string> strlist = new List<string>();
  private List<string> listName = new List<string>();
  //          
  public xmlConfig(string Path)
  {
   XmlDocument xmlDoc = new XmlDocument();
   xmlDoc.Load(Path);//     XML   
   path = Path;
   XmlNode roomlist = xmlDoc.SelectSingleNode("rss");
   XmlNodeList list = roomlist.ChildNodes;
   foreach (XmlNode item in list)
   {
    listName.Add(item.Attributes["Name"].Value);
    strlist.Add(item.InnerText);
    count = listName.Count;
   }
  
  }
  //         
  public int GetCount()
  {
   return count;
  }
  //  tag        Name
  public string GetName(int tag)
  {
   return listName[tag];
  }
  //  tag        value
  public string GetXmlNode(int tag)
  {
   return strlist[tag];
  }
  //  xml      
  public void SavaConfig()
  {
   XmlDocument XMLDoc = new XmlDocument();
   XMLDoc.Load(path);
   XmlNodeList nodeList=XMLDoc.SelectSingleNode("rss").ChildNodes;//           
   for (int i = 0; i < nodeList.Count; i++)//        
   {
    XmlElement xe = (XmlElement)nodeList[i];
    XmlNode ChildXml = nodeList[i];
    for (int j = 0; j < strlist.Count; j++)
    {
     if (listName[j] == ChildXml.Attributes["Name"].Value)
     {
      xe.SetAttribute("Name", listName[i]);
      xe.InnerText = strlist[i];
      break;
     }


    }


   }
   XMLDoc.Save(path);//  。 
  }
  //  xml      
  public void SavaXMLConfig(int tag, string Name)
  {
   strlist[tag] = Name;
  } 
  


 }
}
xml 파일:

<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
 <Student Name="  ">   </Student>
 <Age Name="  ">22</Age>
 <Hobby Name="  ">  </Hobby>
</rss>
이상 은 본문의 전체 내용 이 므 로 여러분 의 학습 에 도움 이 되 기 를 바 랍 니 다.

좋은 웹페이지 즐겨찾기