public static frmConfim getInstance() { if (uniqueInstance == null) { lock (padlock) { if (uniqueInstance == null) { uniqueInstance = new frmConfim(); } } } return(uniqueInstance); }
private void frmConfim_FormClosing(object sender, FormClosingEventArgs e) { uniqueInstance = null; AnimateWindow(this.Handle, 500, AW_BLEND | AW_HIDE); }