private void uiAuditLogToolStripButton_Click(object sender, EventArgs e) { using (AuditLogForm audit = new AuditLogForm()) { audit.ShowDialog(); } }
private void ExisitingCasePanel_PasswordCheckClick(object sender, EventArgs e) { //TODO: logic also exists in load exisiting case panel/close case panels //this is a test of functionality //if password is fine, open audit log Controls.Clear(); using (AuditLogForm audit = new AuditLogForm()) { audit.ShowDialog(); } bool caseHasPassword = new Database.DatabaseHandler().CaseHasPassword(); if (caseHasPassword) { CloseCasePanel closePanel = new CloseCasePanel(); Controls.Add(closePanel); closePanel.PasswordCorrect += ClosePanel_PasswordCorrect; } else { CaseClosingCleanUpPanel cleanUpPanel = new CaseClosingCleanUpPanel("", false); Controls.Add(cleanUpPanel); } }