1、使用weifenluo控件
using WeifenLuo.WinFormsUI.Docking;
using System.IO;
2.关闭事件,将空间布局使用xml格式进行保存
private void main_FormClosing(object sender, FormClosingEventArgs e)
{
MessageBoxButtons mess = MessageBoxButtons.OKCancel;
DialogResult dr = MessageBox.Show("确认退出吗?", "退出询问", mess);
if (dr != DialogResult.OK)
{
e.Cancel = true;
}
else
{
string configFile = Path.Combine(Path.GetDirectoryName(Application.ExecutablePath),"xml.config"); //path.conmbine:将后两个字符串合成一个路径
// path 源自于 system.io 的命名空间
// Path.GetDirectoryName(Application.ExecutablePath) 获得执行程序所在的路径
dockPanel1.SaveAsXml(configFile);
System.Environment.Exit(0);
}
}
3、应用程序启动时,在加载事件中,通过xml事件的加载进行控件布局的还原
private void main_Load(object sender, EventArgs e)
{
ddc = new DeserializeDockContent(GetContentFromPersistString); // 放在后面的话会出错。
//返回配置文件的路径
string configFile = Path.Combine(Path.GetDirectoryName(Application.ExecutablePath), "xml.config");
if (File.Exists(configFile))
{
//如果配置文件存在,就调用该函数,读取配置文件信息
dockPanel1.LoadFromXml(configFile, ddc);
}
else
{
f2.Show(this.dockPanel1, DockState.DockTop);
f4.Show(this.dockPanel1, DockState.DockLeft);
f3.Show(dockPanel1);
}
}
4、出现问题:main主界面中,关闭程序时,main_FormClosing 事件不被触发,程序不被调用
原因:1) 因使用weifenluo的dll控件,其中main主界面含有3个独立的子界面;
2)在其中一个子界面中,含有formclosing触发事件,当时该子界面中该事件关闭整个程序,与main主界面中的事件相互冲突;
解决方案:将子界面中的formclosing事件程序屏蔽掉。