예제 #1
0
파일: Form_help.cs 프로젝트: neoml/print
 private void Form_help_FormClosing(object sender, FormClosingEventArgs e)
 {
     _instance = null;
 }
예제 #2
0
파일: Form_help.cs 프로젝트: neoml/print
 //创建窗体对象的静态方法
 public static Form_help InstanceObject()
 {
     if (_instance == null)
         _instance = new Form_help();
     return _instance;
 }