Esempio n. 1
0
        private void BT_Apply_Click(object sender, EventArgs e)
        {
            double.TryParse(TE_A1.Text, out Para[0]);
            double.TryParse(TE_A2.Text, out Para[1]);

            string Buff = db.EditCutInfor(Trajname, CBE_id.SelectedIndex + 1, Para)?"成功":"错误";

            MessageBox.Show(Buff);
        }