private void BuildForm() { if (finvoice == null) { finvoice = new FLabour(); } finvoice.FLabour_NeedToRefresh += VLabour_NeedToRefresh; Parent.Controls.Add(finvoice); finvoice.Dock = DockStyle.Fill; finvoice.Show(); finvoice.BringToFront(); }
void Listgrid_RowAction(object sender, EventArgs e) { if (listgrid.SelectedRow == null) { return; } if (finvoice == null) { finvoice = new FLabour(); } BuildForm(); string pkValue = GetSelectedPkValue(); if (pkValue != null) { finvoice.SetAction(BtnEvent.Open, pkValue); } }