示例#1
0
        private void BtnAdd_Click(object sender, EventArgs e)
        {
            var f = new frmContactChiTiet(null, pathDataFile);

            if (f.ShowDialog() == DialogResult.OK)
            {
                loadContact();
            }
        }
        private void btnAdd_Click(object sender, EventArgs e)
        {
            var f = new frmContactChiTiet(pathDataFile, null);

            if (f.ShowDialog() == DialogResult.OK)
            {
                loadContact();
                //Tiến hành nạp lại dữ liệu lên lưới
            }
        }
示例#3
0
        private void BtnEdit_Click(object sender, EventArgs e)
        {
            var contact = bdsContact.Current as Contact;

            if (contact != null)
            {
                var f = new frmContactChiTiet(contact, pathDataFile);
                if (f.ShowDialog() == DialogResult.OK)
                {
                    loadContact();
                }
            }
        }
        private void btnEdit_Click(object sender, EventArgs e)
        {
            var contact = bdsContact.Current as Model.Contact;

            if (contact != null)
            {
                var f = new frmContactChiTiet(pathDataFile, contact);
                if (f.ShowDialog() == DialogResult.OK)
                {
                    loadContact();
                    //Tiến hành nạp lại dữ liệu lên lưới
                }
            }
        }