コード例 #1
0
ファイル: MainForm.cs プロジェクト: joe-williams-cccu/OSIRTv2
        private void ClosingOsirt()
        {
            Controls.Clear();

            //UserSettings.Load().CaseHasPassword
            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 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);
            }
        }