private void dgDesenvolvedor_CellDoubleClick(object sender, DataGridViewCellEventArgs e)
        {
            int qualLinha = int.Parse(e.RowIndex.ToString());

            int qualID = int.Parse(dgDesenvolvedor.Rows[qualLinha].Cells[1].Value.ToString());

            FormVisualizaApp v = new FormVisualizaApp(qualID, idUsuario);
            v.ShowDialog();
            PreencherDGDesenvolvedor();
        }
        private void dgAplicativos_CellDoubleClick(object sender, DataGridViewCellEventArgs e)
        {
            int qualLinha = int.Parse(e.RowIndex.ToString());

            int qualID = int.Parse(dgAplicativos.Rows[qualLinha].Cells[3].Value.ToString());

            FormVisualizaApp v = new FormVisualizaApp(qualID, idUsuario);
            v.ShowDialog();
        }