Exemple #1
0
        private void button1_Click(object sender, EventArgs e)
        {
            DialogResult result = MessageBox.Show("确定要取消订单吗?", "提示", MessageBoxButtons.OKCancel);

            if (result == DialogResult.Cancel)
            {
                return;
            }
            bll.CancellationOfOrder(this.Tag.ToString());
            this.Close();
        }