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

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

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