Example #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("", false);
                Controls.Add(cleanUpPanel);
            }
        }
Example #2
0
 private void uiAuditLogToolStripButton_Click(object sender, EventArgs e)
 {
     using (AuditLogForm audit = new AuditLogForm())
     {
         audit.ShowDialog();
     }
 }
Example #3
0
 public static void WaitForAuditLogForm(AuditLogForm form)
 {
     AbstractFunctionalTest.WaitForConditionUI(() => form.BindingListSource.IsComplete);
 }