Exemple #1
0
        private void ONPChoiceBox_SelectionChangeCommitted(object sender, EventArgs e)
        {
            ArgumentBox.Text      = Nazwy.pArgument;
            ArgumentBox.ForeColor = Color.SlateGray;
            ResultBox.Text        = Nazwy.aWynik;
            ResultBox.ForeColor   = Color.SlateGray;

            var selection = ONPChoiceBox.GetItemText(ONPChoiceBox.SelectedItem);

            if (selection == Nazwy.oWartosc)
            {
                RunButton.Text    = Nazwy.pOblicz;
                HelpLabel.Text    = Nazwy.iONPWartość;
                HelpLabel.Visible = true;
            }
            else if (selection == Nazwy.oZONP)
            {
                RunButton.Text    = Nazwy.pWykonaj;
                HelpLabel.Text    = Nazwy.iONPZ;
                HelpLabel.Visible = true;
            }
            else if (selection == Nazwy.oNaONP)
            {
                RunButton.Text    = Nazwy.pWykonaj;
                HelpLabel.Text    = Nazwy.iONPNa;
                HelpLabel.Visible = true;
            }
        }
Exemple #2
0
        private void RunButton_Click(object sender, EventArgs e)
        {
            var title = ONPChoiceBox.GetItemText(ONPChoiceBox.SelectedItem);

            ResultBox.ForeColor = Color.Maroon;
            if (title == Nazwy.oZONP)
            {
                var result = MessageBox.Show(Nazwy.iNiepewne, Nazwy.iOstrzeżenie,
                                             MessageBoxButtons.YesNo, MessageBoxIcon.Warning);
                if (result == DialogResult.Yes)
                {
                    RunAlgorithms.Run(title, ArgumentBox.Text);
                }
            }
            else
            {
                RunAlgorithms.Run(title, ArgumentBox.Text);
            }
        }