private void 全体学生信息输出ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            AllStudentInfo frm = new AllStudentInfo();

            frm.MdiParent = this;
            frm.Show();
            tssMsg.Text = frm.Text;
        }
 private void 全体学生信息ToolStripMenuItem_Click(object sender, EventArgs e)
 {
     if (is_Verify())
     {
         AllStudentInfo frm = new AllStudentInfo();
         frm.MdiParent = this;
         frm.Show();
         tssMsg.Text = frm.Text;
     }
     else
     {
         MessageBox.Show("身份未通过管理员验证!若有疑问,请邮件消息至管理员邮箱:[email protected]", "提示!", MessageBoxButtons.OK, MessageBoxIcon.Information);
     }
 }