Exemplo n.º 1
0
        //****************************************************************************************************
        //修改
        private void btnUpdate_Click(object sender, EventArgs e)
        {
            FrmRegisterTypeEdit frm = new FrmRegisterTypeEdit(Convert.ToInt32(grd.CurrentRow.Cells["id"].Value));

            if (frm.ShowDialog() == DialogResult.OK)
            {
                showData();
            }
        }
Exemplo n.º 2
0
        //****************************************************************************************************
        //添加
        private void btnInsert_Click(object sender, EventArgs e)
        {
            FrmRegisterTypeEdit frm = new FrmRegisterTypeEdit(0);

            if (frm.ShowDialog() == DialogResult.OK)
            {
                showData();
            }
        }