private void btnAddClient_Click(object sender, EventArgs e) { FormAddClient clientWindow = new FormAddClient(); clientWindow.Show(); }
private void add_Click(object sender, EventArgs e) { var myForm = new FormAddClient(); myForm.Show(); }
private void btnAddClient_Click(object sender, EventArgs e) { FormAddClient form = new FormAddClient(); form.Show(); }