Exemplo n.º 1
0
        private void delmenu_Click(object sender, EventArgs e)
        {
            if (this.checkrecordgrid.SelectedRows.Count <= 0)
            {
                MessageBox.Show("请选中要删除的记录!");
            }
            else
            {
                object id = this.checkrecordgrid.SelectedRows[0].Cells[0].Value;
                checker.DelCheckLog(Convert.ToInt32(id));

                this.GetOrderQtyInfo();
                this.ReloadCheckResult();
            };
        }