예제 #1
0
        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("");
                Controls.Add(cleanUpPanel);
            }
        }
예제 #2
0
 private void uiAuditLogToolStripButton_Click(object sender, EventArgs e)
 {
     using (AuditLogForm audit = new AuditLogForm())
     {
         audit.ShowDialog();
     }
 }