Esempio n. 1
0
 private void tsbDel_Click(object sender, EventArgs e)
 {
     if (MessageService.AskQuestion("确定删除吗?", "系统提示"))
     {//系统提示你确定要删除吗?
         if (_supplierEntity.Delete())
         {
             //数据表数据重新绑定 modi my chao.pang
             BindSupplierCode();
             CtrlState = ControlState.Empty;
         }
     }
 }