示例#1
0
        private void dgvInfRecord_DoubleClick(object sender, EventArgs e)
        {
            Inference inf = (Inference)dgvInfRecord.Tag;

            if (inf == null)
            {
                return;
            }
            MessageBox.Show(inf.doPostVariableStat());
        }