private void MGFuseUI_FormClosing(object sender, FormClosingEventArgs e) { if (MegaClient != null) { if (MegaClient.IsLoggedIn) { MegaClient.Logout(); } } Application.Exit(); }
private void quitbtn_Click(object sender, EventArgs e) { if (MegaClient != null) { if (MegaClient.IsLoggedIn) { MegaClient.Logout(); } } Application.Exit(); }