改变控件在窗体中的上下位置应修改控件的啥属性 这些属性在编程里面会用到
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了改变控件在窗体中的上下位置应修改控件的啥属性 这些属性在编程里面会用到相关的知识,希望对你有一定的参考价值。
参考技术A 1、改变控件在窗体中的上下位置应修改控件的属性:location赋坐标。或者改变控件的Left、Top值,表示控件与容器的左边距、上边距。2、Top代表控件在窗体内的竖直偏移量。Left代表控件在窗体内的水平偏移量。Width代表窗体的宽度,Right代表窗体的高度。
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.私信我
以上是关于改变控件在窗体中的上下位置应修改控件的啥属性 这些属性在编程里面会用到的主要内容,如果未能解决你的问题,请参考以下文章