c# 用XML保存控件的位置、大小等信息,XML格式如下,求写XML文件的函数,要具体代码
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c# 用XML保存控件的位置、大小等信息,XML格式如下,求写XML文件的函数,要具体代码相关的知识,希望对你有一定的参考价值。
参考技术A XmlDocument doc = new XmlDocument();XmlElement root = doc.CreateElement("Root");
doc.AppendChild(root);
for (int i = 0; i < this.Controls.Count; i++)
XmlElement control = doc.CreateElement(Controls[i].GetType().ToString());
for (int i1 = 0; i1 < Controls[i].Controls.Count; i1++)
XmlElement item = doc.CreateElement(Controls[i].Controls[i1].GetType().ToString());
item.SetAttribute("Width", Controls[i].Controls[i1].Width.ToString());
item.SetAttribute("Height", Controls[i].Controls[i1].Height.ToString());
item.SetAttribute("Margin", Controls[i].Controls[i1].Margin.All + "," + Controls[i].Controls[i1].Margin.Left + "," + Controls[i].Controls[i1].Margin.Right + "," + Controls[i].Controls[i1].Margin.Top + "," + Controls[i].Controls[i1].Margin.Bottom);
item.SetAttribute("IsEditable", "false");
control.AppendChild(item);
root.AppendChild(control);
doc.Save(Application.StartupPath + "\\xml1.xml"); 参考技术B 100.私信我
以上是关于c# 用XML保存控件的位置、大小等信息,XML格式如下,求写XML文件的函数,要具体代码的主要内容,如果未能解决你的问题,请参考以下文章