public frmEditCaseParty(EditCasePartyDTO edit, frmCodeGenarator parent) { InitializeComponent(); this.edit = edit; _parent = parent; this.Text = "Currently Editing: " + edit.PartyType; }
private void button1_Click(object sender, EventArgs e) { frmCodeGenarator fcg = new frmCodeGenarator(); fcg.Show(); }
private void btnCodeGenerator_Click(object sender, EventArgs e) { frmCodeGenarator frmPayload = new frmCodeGenarator(); frmPayload.ShowDialog(); }