//确定
        private void Button_Click_1(object sender, System.Windows.RoutedEventArgs e)
        {
            StudentCheckData            checkData = dbUtill.GetStudentCheckInfo(activityId, studentId);
            Dictionary <string, string> dic       = checkDataUtill.GetDicByBackStr(checkData.jsonContent);

            dic["Wk"] = weight.Text;
            dic["AG"] = age.Text;
            dic["Pt"] = Pt.Text;
            dic["FW"] = FW.Text;
            dic["fW"] = fW.Text;
            dic["wW"] = wW.Text;
            dic["MW"] = MW.Text;
            dic["mW"] = mW.Text;
            dic["Hm"] = height.Text;
            dic["MI"] = BMI.Text;
            dic["rB"] = rB.Text;
            dic["bW"] = bW.Text;
            string jsonContent = checkDataUtill.DictionaryListToString(dic);
            int    i           = dbUtill.EditStudentCheckInfo(activityId, studentId, jsonContent);

            if (i > 0)
            {
                MessageBox.Show("修改成功", "提示");
                Close();
            }
            else
            {
                MessageBox.Show("修改失败", "提示");
                Close();
            }
        }