Exemple #1
0
        //上一页
        private void btnBefore_Click(object sender, EventArgs e)
        {
            var thahFive = new ThahFive {
                TopMost = false
            };

            thahFive.Show();
            Close();
        }
Exemple #2
0
        //下一页
        private void btnNext_Click(object sender, EventArgs e)
        {
            //判断
            if (!rbQ8A.Checked && !rbQ8B.Checked && !rbQ8C.Checked && !rbQ8D.Checked && !rbQ8E.Checked)
            {
                var msgBox = new CustomMessageBox("请答完本页所有题目再进入下一题!");
                msgBox.ShowDialog();
                return;
            }
            if (!rbQ9A.Checked && !rbQ9B.Checked && !rbQ9C.Checked && !rbQ9D.Checked && !rbQ9E.Checked)
            {
                var msgBox = new CustomMessageBox("请答完本页所有题目再进入下一题!");
                msgBox.ShowDialog();
                return;
            }

            //保存答案
            //第八题
            var strResult8 = string.Empty;

            if (rbQ8A.Checked)
            {
                strResult8 = "A,";
            }
            if (rbQ8B.Checked)
            {
                strResult8 = "B,";
            }
            if (rbQ8C.Checked)
            {
                strResult8 = "C,";
            }
            if (rbQ8D.Checked)
            {
                strResult8 = "D,";
            }
            if (rbQ8E.Checked)
            {
                strResult8 = "E,";
            }
            M_QuestionnaireResultDetail question8 = new M_QuestionnaireResultDetail
            {
                QuestionResult       = strResult8,
                QuestionCode         = QuestionnaireCode.Thah + ".8",
                PQuestionCode        = QuestionnaireCode.Thah + ".8",
                QuestionType         = 1,
                QuestionScore        = 0,
                PQuestionWeightScore = 0
            };

            ClientInfo.AddQuestionToQuestionnaire(question8, QuestionnaireCode.Thah);

            //第九题
            var strResult9 = string.Empty;

            if (rbQ9A.Checked)
            {
                strResult9 = "A,";
            }
            if (rbQ9B.Checked)
            {
                strResult9 = "B,";
            }
            if (rbQ9C.Checked)
            {
                strResult9 = "C,";
            }
            if (rbQ9D.Checked)
            {
                strResult9 = "D,";
            }
            if (rbQ9E.Checked)
            {
                strResult9 = "E,";
            }
            M_QuestionnaireResultDetail question9 = new M_QuestionnaireResultDetail
            {
                QuestionResult       = strResult9,
                QuestionCode         = QuestionnaireCode.Thah + ".9",
                PQuestionCode        = QuestionnaireCode.Thah + ".9",
                QuestionType         = 1,
                QuestionScore        = 0,
                PQuestionWeightScore = 0
            };

            ClientInfo.AddQuestionToQuestionnaire(question9, QuestionnaireCode.Thah);

            var thahFive = new ThahFive {
                TopMost = false
            };

            thahFive.Show();
            Close();
        }