public static frmNotifications getForm() { if (form == null) { form = new frmNotifications(); } return form; }
private void button2_Click(object sender, EventArgs e) { frmNotifications form = new frmNotifications(); form.Show(); this.Hide(); }