Example #1
0
        private void BtnNextForm_Click(object sender, EventArgs e)
        {
            switch (fluxo)
            {
            case UtilDTO.NAVIGATION.DEVOPS:
                break;

            case UtilDTO.NAVIGATION.VARIOS_RELATORIOS:
                containerForm.AbrirForm(new SprintAbsenceHourForm(containerForm, configXml, fluxo, sprintsDevList, sprintsSmList));
                break;

            case UtilDTO.NAVIGATION.DEV:
                containerForm.AbrirForm(new SprintAbsenceHourForm(containerForm, configXml, fluxo, sprintsDevList));
                break;

            default:
                break;
            }
        }
Example #2
0
 private void BtnNextForm_Click(object sender, EventArgs e)
 {
     try
     {
         ValidateConfigData();
         containerForm.AbrirForm(new ConfigContratoForm(containerForm, config));
     }
     catch (Exception ex)
     {
         txbResult.Text = $"ERRO. {ex.Message}";
     }
 }
Example #3
0
        private void BtnNextForm_Click(object sender, EventArgs e)
        {
            switch (fluxo)
            {
            case UtilDTO.NAVIGATION.DEVOPS:
                containerForm.AbrirForm(new SprintDevOpsForm(containerForm, sprintsDevOpsList));
                break;

            case UtilDTO.NAVIGATION.VARIOS_RELATORIOS:
                containerForm.AbrirForm(new SprintPontosObsForm(containerForm, configXml, fluxo, sprintsDevList, sprintsSmList));
                break;

            case UtilDTO.NAVIGATION.DEV:
                containerForm.AbrirForm(new SprintPontosObsForm(containerForm, configXml, fluxo, sprintsDevList));
                break;

            case UtilDTO.NAVIGATION.SM:
                containerForm.AbrirForm(new SprintSmCompartilhadoPontos(containerForm, configXml, fluxo, sprintsSmList));
                break;

            default:
                throw new NotImplementedException();
            }
        }
Example #4
0
        private void BtnPreviousForm_Click(object sender, System.EventArgs e)
        {
            switch (currentScreen)
            {
            case SCREEN.SECOND:
                containerForm.AbrirForm(new ConfigBaseForm(containerForm, config));
                break;

            case SCREEN.LAST:
                currentScreen = SCREEN.SECOND;
                SetScreenLayout();
                break;

            default:
                break;
            }
        }
 private void BtnPreviousForm_Click(object sender, EventArgs e)
 {
     containerForm.AbrirForm(new SprintBaseForm(containerForm, fluxo, sprintsSmList));
 }
Example #6
0
 private void BtnPreviousForm_Click(object sender, System.EventArgs e)
 {
     containerForm.AbrirForm(new SprintBaseForm(containerForm, UtilDTO.NAVIGATION.DEVOPS, sprintsDevOpsList));
 }