Exemplo n.º 1
0
        public void NewProfile(object sender, EventArgs e)
        {
            FormEdit edit = new FormEdit(false, this);

            edit.ShowDialog();
        }
Exemplo n.º 2
0
        // edita profilo esistente
        public void EditProfile(object sender, EventArgs e)
        {
            FormEdit edit = new FormEdit(true, selectedProfile, this);

            edit.ShowDialog();
        }