C\#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>
이상 은 본문의 전체 내용 이 므 로 여러분 의 학습 에 도움 이 되 기 를 바 랍 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
WebView2를 Visual Studio 2017 Express에서 사용할 수 있을 때까지Evergreen .Net Framework SDK 4.8 VisualStudio2017에서 NuGet을 사용하기 때문에 패키지 관리 방법을 packages.config 대신 PackageReference를 사용해야...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.