Exemplo n.º 1
0
        // Setup Test Plan Continuation Panel Functions
        private void ButtonSetupTestPlanFinish_Click(object sender, EventArgs e)
        {
            ButtonColorAnimation(ButtonSetupTestPlanFinish, Color.LightGreen);

            CurrentPanel.Hide();
            PanelSetupTestPlan.Hide();
        }
Exemplo n.º 2
0
        private void ButtonTestCases_Click(object sender, EventArgs e)
        {
            PanelSetupTestPlan.Hide();

            if (CurrentPanel != null)
            {
                CurrentPanel.Hide();
            }

            PanelTestCases.Show();
            CurrentPanel = PanelTestCases;

            FillDataGridViewTestCases();
        }