Beispiel #1
0
        private void btnEdit_Click(object sender, EventArgs e)
        {
            FormCadastroLogin ficha = new FormCadastroLogin();

            ficha.Usuario = (modelo.usuarios)bs.Current;
            ficha.ShowDialog();
            if (ficha.Usuario != null)
            {
                controle.UsuarioDB tabela = new controle.UsuarioDB();
                bs.DataSource = tabela.listar();
                bs.ResetBindings(true);
            }
        }
Beispiel #2
0
        private void btnAdd_Click(object sender, EventArgs e)
        {
            FormCadastroLogin ficha = new FormCadastroLogin();

            ficha.Usuario = null;
            ficha.ShowDialog();
            if (ficha.Usuario != null)
            {
                controle.UsuarioDB tabela = new controle.UsuarioDB();
                bs.DataSource = tabela.listar();
                bs.ResetBindings(true);
                bs.MoveLast();
            }
        }