コード例 #1
0
        private void BtnAdd_Click(object sender, EventArgs e)
        {
            AddClientForm clientformB = new AddClientForm();

            clientformB.Show();
            this.Hide();
            clientformB.FormClosed += ClientForm_FormClosed;
        }
コード例 #2
0
        private void BtnAddClient_Click(object sender, EventArgs e)
        {
            AddClientForm addClientForm = new AddClientForm();

            addClientForm.Show();
            this.Hide();
            addClientForm.FormClosed += addClientForm_formclosed;
        }
コード例 #3
0
        private void AdaugareClientToolStripMenuItem_Click(object sender, EventArgs e)
        {
            AddClientForm form = new AddClientForm(this);

            form.Show();
        }