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); } }
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(); } }