private void buttonAddNote_Click(object sender, EventArgs e) { using (CreateNoteForm createNoteForm = new CreateNoteForm()) { createNoteForm.Entity = this.entity; if (createNoteForm.ShowDialog() == DialogResult.OK) { this.changed = true; this.ReloadData(); } } }
private void buttonAddNote_Click( object sender, EventArgs e ) { using ( CreateNoteForm createNoteForm = new CreateNoteForm() ) { createNoteForm.Entity = this.entity; if ( createNoteForm.ShowDialog() == DialogResult.OK ) { this.changed = true; this.ReloadData(); } } }