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