Exemplo n.º 1
0
        private void edytujToolStripMenuItem_Click(object sender, EventArgs e)
        {
            ContactAddEdit cae = new ContactAddEdit(Contacts[gvContacts.GetFocusedDataSourceRowIndex()]);

            cae.FormClosed += cae_FormClosed;
            cae.Show();
        }
Exemplo n.º 2
0
        private void btnAddContact_Click(object sender, EventArgs e)
        {
            ContactAddEdit conae = new ContactAddEdit();

            conae.FormClosed += cae_FormClosed;
            conae.Show();
        }