private void tlBtnDelete_Click(object sender, EventArgs e)
        {
            if (txtID.Text.Trim() == string.Empty)
            {
                MessageBox.Show("删除--腹腰臀部数据--失败!", "错误提示!", MessageBoxButtons.OK, MessageBoxIcon.Error);
                return;
            }
            BellyWaistHipDataInfo.id = txtID.Text;
            //执行删除
            int id = baseinfo.DeleteBellyWaistHipData(BellyWaistHipDataInfo);

            MessageBox.Show("删除--头部数据--成功!", "成功提示!", MessageBoxButtons.OK, MessageBoxIcon.Information);
            dgvBellyWaistHipDataList.DataSource = baseinfo.GetAllBellyWaistHipData("BellyWaistHipData").Tables[0].DefaultView;
            this.SetdgvBellyWaistHipDataListHeadText();
            this.clearText();
        }