private void btnAddRecord_Click(object sender, EventArgs e) { using (var page = new AddIncomePage()) { page.ShowDialog(); } IncomePage_Load(null, null); }
private void EditRecord() { using (var page = new AddIncomePage()) { if (dgv.CurrentRow != null) { page.IncomeId = (int)dgv.CurrentRow.Cells["clnId"].Value; page.ShowDialog(); } } IncomePage_Load(null, null); }