在窗体中加入如下代码
使用方法:
在要调用该窗体的地方加入如下代码
private static 窗体 instance = null;
//添加一个属性
public static 窗体 Instance
{
set{
}
get{
if(instance == null){
new 窗体();
}
return instance;
}
}
在窗体的构造函数中加入如下代码//添加一个属性
public static 窗体 Instance
{
set{
}
get{
if(instance == null){
new 窗体();
}
return instance;
}
}
instance = this;
创建窗体Closed事件
private void 窗体_FormClosed(object sender, FormClosedEventArgs e)
{
instance = null;
}
{
instance = null;
}
使用方法:
在要调用该窗体的地方加入如下代码
窗体 myfrm = 窗体.Instance;
myfrm.Show();
myfrm.Activate();
myfrm.Show();
myfrm.Activate();
关键字词: