Exemple #1
0
 private void Form_help_FormClosing(object sender, FormClosingEventArgs e)
 {
     _instance = null;
 }
Exemple #2
0
 //创建窗体对象的静态方法
 public static Form_help InstanceObject()
 {
     if (_instance == null)
         _instance = new Form_help();
     return _instance;
 }