private void simpleButton1_Click_1(object sender, EventArgs e) { var agrupacionForm = new AgrupacionesForm(); agrupacionForm.Show(); agrupacionForm.gridView1.AddNewRow(); agrupacionForm.gridView1.ShowEditForm(); if (agrupacionForm.DialogResult == DialogResult.OK) { Agrupacion_repositoryItemLookUpEdit.DataSource = (new NegocioDataContext()).Agrupacion; } }
private void AgrupacionbarButtonItem_ItemClick(object sender, ItemClickEventArgs e) { var xtraForm = FindControl("AgrupacionesForm") as XtraForm; if (xtraForm != null) { xtraForm.Activate(); } else { AgrupacionesForm form = new AgrupacionesForm { MdiParent = this }; form.Show(); } }