c#讀取XML(app.config/web.config)
當(dāng)前位置:點(diǎn)晴教程→知識(shí)管理交流
→『 技術(shù)文檔交流 』
XML文件是一種常用的文件格式,例如WinForm里面的app.config以及Web程序中的web.config文件,還有許多重要的場(chǎng)所都有它的身影。Xml是Internet環(huán)境中跨平臺(tái)的,依賴于內(nèi)容的技術(shù),是當(dāng)前處理結(jié)構(gòu)化文檔信息的有力工具。XML是一種簡(jiǎn)單的數(shù)據(jù)存儲(chǔ)語(yǔ)言,使用一系列簡(jiǎn)單的標(biāo)記描述數(shù)據(jù),而這些標(biāo)記可以用方便的方式建立,雖然XML占用的空間比二進(jìn)制數(shù)據(jù)要占用更多的空間,但XML極其簡(jiǎn)單易于掌握和使用。微軟也提供了一系列類庫(kù)來(lái)倒幫助我們?cè)趹?yīng)用程序中存儲(chǔ)XML文件。 “在程序中訪問(wèn)進(jìn)而操作XML文件一般有兩種模型,分別是使用DOM(文檔對(duì)象模型)和流模型,使用DOM的好處在于它允許編輯和更新XML文檔,可以隨機(jī)訪問(wèn)文檔中的數(shù)據(jù),可以使用XPath查詢,但是,DOM的缺點(diǎn)在于它需要一次性的加載整個(gè)文檔到內(nèi)存中,對(duì)于大型的文檔,這會(huì)造成資源問(wèn)題。流模型很好的解決了這個(gè)問(wèn)題,因?yàn)樗鼘?duì)XML文件的訪問(wèn)采用的是流的概念,也就是說(shuō),任何時(shí)候在內(nèi)存中只有當(dāng)前節(jié)點(diǎn),但它也有它的不足,它是只讀的,僅向前的,不能在文檔中執(zhí)行向后導(dǎo)航操作?!本唧w參見(jiàn)在Visual C#中使用XML指南之讀取XML 下面我將介紹三種常用的讀取XML文件的方法。分別是 1: 使用 XmlDocument 2: 使用 XmlTextReader 3: 使用 Linq to Xml 這里我先創(chuàng)建一個(gè)XML文件,名為Book.xml下面所有的方法都是基于這個(gè)XML文件的,文件內(nèi)容如下: 1: <?xml version="1.0" encoding="utf-8"?> 2: <bookstore> 3: <!--記錄書本的信息--> 4: <book Type="必修課" ISBN="7-111-19149-2"> 5: <title>數(shù)據(jù)結(jié)構(gòu)</title> 6: <author>嚴(yán)蔚敏</author> 7: <price>30.00</price> 8: </book> 9: <book Type="必修課" ISBN="7-111-19149-3"> 10: <title>路由型與交換型互聯(lián)網(wǎng)基礎(chǔ)</title> 11: <author>程慶梅</author> 12: <price>27.00</price> 13: </book> 14: <book Type="必修課" ISBN="7-111-19149-4"> 15: <title>計(jì)算機(jī)硬件技術(shù)基礎(chǔ)</title> 16: <author>李繼燦</author> 17: <price>25.00</price> 18: </book> 19: <book Type="必修課" ISBN="7-111-19149-5"> 20: <title>軟件質(zhì)量保證與管理</title> 21: <author>朱少民</author> 22: <price>39.00</price> 23: </book> 24: <book Type="必修課" ISBN="7-111-19149-6"> 25: <title>算法設(shè)計(jì)與分析</title> 26: <author>王紅梅</author> 27: <price>23.00</price> 28: </book> 29: <book Type="選修課" ISBN="7-111-19149-1"> 30: <title>計(jì)算機(jī)操作系統(tǒng)</title> 31: <author>7-111-19149-1</author> 32: <price>28</price> 33: </book> 34: </bookstore> 為了方便讀取,我還定義一個(gè)書的實(shí)體類,名為BookModel,具體內(nèi)容如下: 1: using System; 2: using System.Collections.Generic; 3: using System.Linq; 4: using System.Text; 5: 6: namespace 使用XmlDocument 7: { 8: public class BookModel 9: { 10: public BookModel() 11: { } 12: /// <summary> 13: /// 所對(duì)應(yīng)的課程類型 14: /// </summary> 15: private string bookType; 16: 17: public string BookType 18: { 19: get { return bookType; } 20: set { bookType = value; } 21: } 22: 23: /// <summary> 24: /// 書所對(duì)應(yīng)的ISBN號(hào) 25: /// </summary> 26: private string bookISBN; 27: 28: public string BookISBN 29: { 30: get { return bookISBN; } 31: set { bookISBN = value; } 32: } 33: 34: /// <summary> 35: /// 書名 36: /// </summary> 37: private string bookName; 38: 39: public string BookName 40: { 41: get { return bookName; } 42: set { bookName = value; } 43: } 44: 45: /// <summary> 46: /// 作者 47: /// </summary> 48: private string bookAuthor; 49: 50: public string BookAuthor 51: { 52: get { return bookAuthor; } 53: set { bookAuthor = value; } 54: } 55: 56: /// <summary> 57: /// 價(jià)格 58: /// </summary> 59: private double bookPrice; 60: 61: public double BookPrice 62: { 63: get { return bookPrice; } 64: set { bookPrice = value; } 65: } 66: } 67: } 1.使用XmlDocument. 使用XmlDocument是一種基于文檔結(jié)構(gòu)模型的方式來(lái)讀取XML文件.在XML文件中,我們可以把XML看作是由文檔聲明(Declare),元素(Element),屬性(Attribute),文本(Text)等構(gòu)成的一個(gè)樹.最開(kāi)始的一個(gè)結(jié)點(diǎn)叫作根結(jié)點(diǎn),每個(gè)結(jié)點(diǎn)都可以有自己的子結(jié)點(diǎn).得到一個(gè)結(jié)點(diǎn)后,可以通過(guò)一系列屬性或方法得到這個(gè)結(jié)點(diǎn)的值或其它的一些屬性.例如: 1: xn 代表一個(gè)結(jié)點(diǎn) 2: xn.Name;//這個(gè)結(jié)點(diǎn)的名稱 3: xn.Value;//這個(gè)結(jié)點(diǎn)的值 4: xn.ChildNodes;//這個(gè)結(jié)點(diǎn)的所有子結(jié)點(diǎn) 5: xn.ParentNode;//這個(gè)結(jié)點(diǎn)的父結(jié)點(diǎn) 6: ....... 1.1 讀取所有的數(shù)據(jù). 使用的時(shí)候,首先聲明一個(gè)XmlDocument對(duì)象,然后調(diào)用Load方法,從指定的路徑加載XML文件. 1: XmlDocument doc = new XmlDocument(); 2: doc.Load(@"..\..\Book.xml"); 然后可以通過(guò)調(diào)用SelectSingleNode得到指定的結(jié)點(diǎn),通過(guò)GetAttribute得到具體的屬性值.參看下面的代碼 1: // 得到根節(jié)點(diǎn)bookstore 2: XmlNode xn = xmlDoc.SelectSingleNode("bookstore"); 3: 4: 5: // 得到根節(jié)點(diǎn)的所有子節(jié)點(diǎn) 6: XmlNodeList xnl = xn.ChildNodes; 7: 8: foreach (XmlNode xn1 in xnl) 9: { 10: BookModel bookModel = new BookModel(); 11: // 將節(jié)點(diǎn)轉(zhuǎn)換為元素,便于得到節(jié)點(diǎn)的屬性值 12: XmlElement xe = (XmlElement)xn1; 13: // 得到Type和ISBN兩個(gè)屬性的屬性值 14: bookModel.BookISBN = xe.GetAttribute("ISBN").ToString(); 15: bookModel.BookType = xe.GetAttribute("Type").ToString(); 16: // 得到Book節(jié)點(diǎn)的所有子節(jié)點(diǎn) 17: XmlNodeList xnl0 = xe.ChildNodes; 18: bookModel.BookName=xnl0.Item(0).InnerText; 19: bookModel.BookAuthor=xnl0.Item(1).InnerText; 20: bookModel.BookPrice=Convert.ToDouble(xnl0.Item(2).InnerText); 21: bookModeList.Add(bookModel); 22: } 23: dgvBookInfo.DataSource = bookModeList; 在正常情況下,上面的代碼好像沒(méi)有什么問(wèn)題,但是對(duì)于讀取上面的XML文件,則會(huì)出錯(cuò),原因就是因?yàn)槲疑厦娴腦ML文件里面有注釋,大家可以參看Book.xml文件中的第三行,我隨便加的一句注釋.注釋也是一種結(jié)點(diǎn)類型,在沒(méi)有特別說(shuō)明的情況下,會(huì)默認(rèn)它也是一個(gè)結(jié)點(diǎn)(Node).所以在把結(jié)點(diǎn)轉(zhuǎn)換成元素的時(shí)候就會(huì)報(bào)錯(cuò)."無(wú)法將類型為“System.Xml.XmlComment”的對(duì)象強(qiáng)制轉(zhuǎn)換為類型“System.Xml.XmlElement”。" 幸虧它里面自帶了解決辦法,那就是在讀取的時(shí)候,告訴編譯器讓它忽略掉里面的注釋信息.修改如下: 1: XmlDocument xmlDoc = new XmlDocument(); 2: XmlReaderSettings settings = new XmlReaderSettings(); 3: settings.IgnoreComments = true;//忽略文檔里面的注釋 4: XmlReader reader = XmlReader.Create(@"..\..\Book.xml", settings); 5: xmlDoc.Load(reader); 最后讀取完畢后,記得要關(guān)掉reader. 1: reader.Close(); 這樣它就不會(huì)出現(xiàn)錯(cuò)誤. 最后運(yùn)行結(jié)果如下: 1.2 增加一本書的信息. 向文件中添加新的數(shù)據(jù)的時(shí)候,首先也是通過(guò)XmlDocument加載整個(gè)文檔,然后通過(guò)調(diào)用SelectSingleNode方法獲得根結(jié)點(diǎn),通過(guò)CreateElement方法創(chuàng)建元素,用CreateAttribute創(chuàng)建屬性,用AppendChild把當(dāng)前結(jié)點(diǎn)掛接在其它結(jié)點(diǎn)上,用SetAttributeNode設(shè)置結(jié)點(diǎn)的屬性.具體代碼如下: 加載文件并選出要結(jié)點(diǎn): 1: XmlDocument doc = new XmlDocument(); 2: doc.Load(@"..\..\Book.xml"); 3: XmlNode root = doc.SelectSingleNode("bookstore"); 創(chuàng)建一個(gè)結(jié)點(diǎn),并設(shè)置結(jié)點(diǎn)的屬性: 1: XmlElement xelKey = doc.CreateElement("book"); 2: XmlAttribute xelType = doc.CreateAttribute("Type"); 3: xelType.InnerText = "adfdsf"; 4: xelKey.SetAttributeNode(xelType); 創(chuàng)建子結(jié)點(diǎn): 1: XmlElement xelAuthor = doc.CreateElement("author"); 2: xelAuthor.InnerText = "dfdsa"; 3: xelKey.AppendChild(xelAuthor); 最后把book結(jié)點(diǎn)掛接在要結(jié)點(diǎn)上,并保存整個(gè)文件: 1: root.AppendChild(xelKey); 2: doc.Save(@"..\..\Book.xml"); 用上面的方法,是向已有的文件上追加數(shù)據(jù),如果想覆蓋原有的所有數(shù)據(jù),可以更改一下,使用LoadXml方法: 1: XmlDocument doc = new XmlDocument(); 2: doc.LoadXml("<bookstore></bookstore>");//用這句話,會(huì)把以前的數(shù)據(jù)全部覆蓋掉,只有你增加的數(shù)據(jù) 直接把根結(jié)點(diǎn)選擇出來(lái)了,后面不用SelectSingleNode方法選擇根結(jié)點(diǎn),直接創(chuàng)建結(jié)點(diǎn)即可,代碼同上. 1.3 刪除某一個(gè)數(shù)據(jù) 想要?jiǎng)h除某一個(gè)結(jié)點(diǎn),直接找到其父結(jié)點(diǎn),然后調(diào)用RemoveChild方法即可,現(xiàn)在關(guān)鍵的問(wèn)題是如何找到這個(gè)結(jié)點(diǎn),上面的SelectSingleNode可以傳入一個(gè)Xpath表,我們通過(guò)書的ISBN號(hào)來(lái)找到這本書所在的結(jié)點(diǎn).如下: 1: XmlElement xe = xmlDoc.DocumentElement; // DocumentElement 獲取xml文檔對(duì)象的根XmlElement. 2: string strPath = string.Format("/bookstore/book[@ISBN=\"{0}\"]", dgvBookInfo.CurrentRow.Cells[1].Value.ToString()); 3: XmlElement selectXe = (XmlElement)xe.SelectSingleNode(strPath); //selectSingleNode 根據(jù)XPath表達(dá)式,獲得符合條件的第一個(gè)節(jié)點(diǎn). 4: selectXe.ParentNode.RemoveChild(selectXe); "/bookstore/book[@ISBN=\"{0}\"]"是一個(gè)Xpath表達(dá)式,找到ISBN號(hào)為所選那一行ISBN號(hào)的那本書,有關(guān)Xpath的知識(shí)請(qǐng)參考:XPath 語(yǔ)法 1.4 修改某要條數(shù)據(jù) 修改某 條數(shù)據(jù)的話,首先也是用Xpath表達(dá)式找到所需要修改的那一個(gè)結(jié)點(diǎn),然后如果是元素的話,就直接對(duì)這個(gè)元素賦值,如果是屬性的話,就用SetAttribute方法設(shè)置即可.如下: 1: XmlElement xe = xmlDoc.DocumentElement; // DocumentElement 獲取xml文檔對(duì)象的根XmlElement. 2: string strPath = string.Format("/bookstore/book[@ISBN=\"{0}\"]", dgvBookInfo.CurrentRow.Cells[1].Value.ToString()); 3: XmlElement selectXe = (XmlElement)xe.SelectSingleNode(strPath); //selectSingleNode 根據(jù)XPath表達(dá)式,獲得符合條件的第一個(gè)節(jié)點(diǎn). 4: selectXe.SetAttribute("Type", dgvBookInfo.CurrentRow.Cells[0].Value.ToString());//也可以通過(guò)SetAttribute來(lái)增加一個(gè)屬性 5: selectXe.GetElementsByTagName("title").Item(0).InnerText = dgvBookInfo.CurrentRow.Cells[2].Value.ToString(); 6: selectXe.GetElementsByTagName("author").Item(0).InnerText = dgvBookInfo.CurrentRow.Cells[3].Value.ToString(); 7: selectXe.GetElementsByTagName("price").Item(0).InnerText = dgvBookInfo.CurrentRow.Cells[4].Value.ToString(); 8: xmlDoc.Save(@"..\..\Book.xml"); 2.使用XmlTextReader和XmlTextWriter XmlTextReader和XmlTextWriter是以流的形式來(lái)讀寫XML文件. 2.1XmlTextReader 使用XmlTextReader讀取數(shù)據(jù)的時(shí)候,首先創(chuàng)建一個(gè)流,然后用read()方法來(lái)不斷的向下讀,根據(jù)讀取的結(jié)點(diǎn)的類型來(lái)進(jìn)行相應(yīng)的操作.如下: 1: XmlTextReader reader = new XmlTextReader(@"..\..\Book.xml"); 2: List<BookModel> modelList = new List<BookModel>(); 3: BookModel model = new BookModel(); 4: while (reader.Read()) 5: { 6: 7: if (reader.NodeType == XmlNodeType.Element) 8: { 9: if (reader.Name == "book") 10: { 11: model.BookType = reader.GetAttribute(0); 12: model.BookISBN = reader.GetAttribute(1); 13: } 14: if (reader.Name == "title") 15: { 16: model.BookName=reader.ReadElementString().Trim(); 17: } 18: if (reader.Name == "author") 19: { 20: model.BookAuthor = reader.ReadElementString().Trim(); 21: } 22: if (reader.Name == "price") 23: { 24: model.BookPrice = Convert.ToDouble(reader.ReadElementString().Trim()); 25: } 26: } 27: 28: if (reader.NodeType == XmlNodeType.EndElement) 29: { 30: modelList.Add(model); 31: model = new BookModel(); 32: } 33: 34: 35: } 36: modelList.RemoveAt(modelList.Count-1); 37: this.dgvBookInfo.DataSource = modelList; 關(guān)鍵是讀取屬性的時(shí)候,你要先知道哪一個(gè)結(jié)點(diǎn)具有幾個(gè)屬性,然后通過(guò)GetAttribute方法來(lái)讀取.讀取屬性還可以用另外一種方法,就是用MoveToAttribute方法.可參見(jiàn)下面的代碼: 1: if (reader.Name == "book") 2: { 3: for (int i = 0; i < reader.AttributeCount; i++) 4: { 5: reader.MoveToAttribute(i); 6: string str = "屬性:" + reader.Name + "=" + reader.Value; 7: } 8: model.BookType = reader.GetAttribute(0); 9: model.BookISBN = reader.GetAttribute(1); 10: } 效果如下: 2.2XmlTextWriter XmlTextWriter寫文件的時(shí)候,默認(rèn)是覆蓋以前的文件,如果此文件名不存在,它將創(chuàng)建此文件.首先設(shè)置一下,你要?jiǎng)?chuàng)建的XML文件格式, 1: XmlTextWriter myXmlTextWriter = new XmlTextWriter(@"..\..\Book1.xml", null); 2: //使用 Formatting 屬性指定希望將 XML 設(shè)定為何種格式。 這樣,子元素就可以通過(guò)使用 Indentation 和 IndentChar 屬性來(lái)縮進(jìn)。 3: myXmlTextWriter.Formatting = Formatting.Indented; 然后可以通過(guò)WriteStartElement和WriteElementString方法來(lái)創(chuàng)建元素,這兩者的區(qū)別就是如果有子結(jié)點(diǎn)的元素,那么創(chuàng)建的時(shí)候就用WriteStartElement,然后去創(chuàng)建子元素,創(chuàng)建完畢后,要調(diào)用相應(yīng)的WriteEndElement來(lái)告訴編譯器,創(chuàng)建完畢,用WriteElementString來(lái)創(chuàng)建單個(gè)的元素,用WriteAttributeString來(lái)創(chuàng)建屬性.如下: 1: XmlTextWriter myXmlTextWriter = new XmlTextWriter(@"..\..\Book1.xml", null); 2: //使用 Formatting 屬性指定希望將 XML 設(shè)定為何種格式。 這樣,子元素就可以通過(guò)使用 Indentation 和 IndentChar 屬性來(lái)縮進(jìn)。 3: myXmlTextWriter.Formatting = Formatting.Indented; 4: 5: myXmlTextWriter.WriteStartDocument(false); 6: myXmlTextWriter.WriteStartElement("bookstore"); 7: 8: myXmlTextWriter.WriteComment("記錄書本的信息"); 9: myXmlTextWriter.WriteStartElement("book"); 10: 11: myXmlTextWriter.WriteAttributeString("Type", "選修課"); 12: myXmlTextWriter.WriteAttributeString("ISBN", "111111111"); 13: 14: myXmlTextWriter.WriteElementString("author","張三"); 15: myXmlTextWriter.WriteElementString("title", "職業(yè)生涯規(guī)劃"); 16: myXmlTextWriter.WriteElementString("price", "16.00"); 17: 18: myXmlTextWriter.WriteEndElement(); 19: myXmlTextWriter.WriteEndElement(); 20: 21: myXmlTextWriter.Flush(); 22: myXmlTextWriter.Close(); 3.使用Linq to XML. Linq是C#3.0中出現(xiàn)的一個(gè)新特性,使用它可以方便的操作許多數(shù)據(jù)源,也包括XML文件.使用Linq操作XML文件非常的方便,而且也比較簡(jiǎn)單.下面直接看代碼, 先定義 一個(gè)方法顯示查詢出來(lái)的數(shù)據(jù) 1: private void showInfoByElements(IEnumerable<XElement> elements) 2: { 3: List<BookModel> modelList = new List<BookModel>(); 4: foreach (var ele in elements) 5: { 6: BookModel model = new BookModel(); 7: model.BookAuthor = ele.Element("author").Value; 8: model.BookName = ele.Element("title").Value; 9: model.BookPrice = Convert.ToDouble(ele.Element("price").Value); 10: model.BookISBN=ele.Attribute("ISBN").Value; 11: model.BookType=ele.Attribute("Type").Value; 12: 13: modelList.Add(model); 14: } 15: dgvBookInfo.DataSource = modelList; 16: } 3.1讀取所有的數(shù)據(jù) 直接找到元素為book的這個(gè)結(jié)點(diǎn),然后遍歷讀取所有的結(jié)果. 1: private void btnReadAll_Click(object sender, EventArgs e) 2: { 3: XElement xe = XElement.Load(@"..\..\Book.xml"); 4: IEnumerable<XElement> elements = from ele in xe.Elements("book") 5: select ele; 6: showInfoByElements(elements); 7: } 3.2插入一條數(shù)據(jù) 插入結(jié)點(diǎn)和屬性都采用new的方法,如下: 1: private void btnInsert_Click(object sender, EventArgs e) 2: { 3: XElement xe = XElement.Load(@"..\..\Book.xml"); 4: XElement record = new XElement( 5: new XElement("book", 6: new XAttribute("Type", "選修課"), 7: new XAttribute("ISBN","7-111-19149-1"), 8: new XElement("title", "計(jì)算機(jī)操作系統(tǒng)"), 9: new XElement("author", "7-111-19149-1"), 10: new XElement("price", 28.00))); 11: xe.Add(record); 12: xe.Save(@"..\..\Book.xml"); 13: MessageBox.Show("插入成功!"); 14: btnReadAll_Click(sender, e); 15: } 3.3 刪除選中的數(shù)據(jù) 首先得到選中的那一行,通過(guò)ISBN號(hào)來(lái)找到這個(gè)元素,然后用Remove方法直接刪除,如下: 1: private void btnDelete_Click(object sender, EventArgs e) 2: { 3: if (dgvBookInfo.CurrentRow != null) 4: { 5: //dgvBookInfo.CurrentRow.Cells[1]對(duì)應(yīng)著ISBN號(hào) 6: string id = dgvBookInfo.CurrentRow.Cells[1].Value.ToString(); 7: XElement xe = XElement.Load(@"..\..\Book.xml"); 8: IEnumerable<XElement> elements = from ele in xe.Elements("book") 9: where (string)ele.Attribute("ISBN") == id 10: select ele; 12: { 11: if (elements.Count() > 0) 13: elements.First().Remove(); 14: } 15: xe.Save(@"..\..\Book.xml"); 16: MessageBox.Show("刪除成功!"); 17: btnReadAll_Click(sender, e); 18: 19: } 20: } 3.4 刪除所有的數(shù)據(jù) 與上面的類似,選出所有的數(shù)據(jù),然后用Remove方法,如下: 1: private void btnDeleteAll_Click(object sender, EventArgs e) 2: { 3: XElement xe = XElement.Load(@"..\..\Book.xml"); 4: IEnumerable<XElement> elements = from ele in xe.Elements("book") 5: select ele; 6: if (elements.Count() > 0) 7: { 8: elements.Remove(); 9: } 10: xe.Save(@"..\..\Book.xml"); 11: MessageBox.Show("刪除成功!"); 12: btnReadAll_Click(sender, e); 13: } 3.5 修改某一記錄 首先得到所要修改的某一個(gè)結(jié)點(diǎn),然后用SetAttributeValue來(lái)修改屬性,用ReplaceNodes來(lái)修改結(jié)點(diǎn)元素。如下: 1: private void btnSave_Click(object sender, EventArgs e) 2: { 3: XElement xe = XElement.Load(@"..\..\Book.xml"); 4: if (dgvBookInfo.CurrentRow != null) 5: { 6: //dgvBookInfo.CurrentRow.Cells[1]對(duì)應(yīng)著ISBN號(hào) 7: string id = dgvBookInfo.CurrentRow.Cells[1].Value.ToString(); 8: IEnumerable<XElement> element = from ele in xe.Elements("book") 9: where ele.Attribute("ISBN").Value == id 10: select ele; 11: if (element.Count() > 0) 12: { 13: XElement first = element.First(); 14: ///設(shè)置新的屬性 15: first.SetAttributeValue("Type", dgvBookInfo.CurrentRow.Cells[0].Value.ToString()); 16: ///替換新的節(jié)點(diǎn) 17: first.ReplaceNodes( 18: new XElement("title", dgvBookInfo.CurrentRow.Cells[2].Value.ToString()), 19: new XElement("author", dgvBookInfo.CurrentRow.Cells[3].Value.ToString()), 20: new XElement("price", (double)dgvBookInfo.CurrentRow.Cells[4].Value) 21: ); 22: } 23: xe.Save(@"..\..\Book.xml"); 24: 25: MessageBox.Show("修改成功!"); 26: btnReadAll_Click(sender, e); 27: } 28: } 最終效果如下: 該文章在 2021/3/8 14:35:37 編輯過(guò) |
關(guān)鍵字查詢
相關(guān)文章
正在查詢... |