Пример #1
0
        private void goToMultiplication_Click(object sender, EventArgs e)
        {
            templateTuringMachine multiplicationForm = new templateTuringMachine(this, 5);

            multiplicationForm.Text = "Multiplicación";
            multiplicationForm.Show();
            this.Visible = false;
        }
Пример #2
0
        private void goToSubtraction_Click(object sender, EventArgs e)
        {
            templateTuringMachine subtractionForm = new templateTuringMachine(this, 4);

            subtractionForm.Text = "Resta";
            subtractionForm.Show();
            this.Visible = false;
        }
Пример #3
0
        private void goToCopyOfPatterns_Click(object sender, EventArgs e)
        {
            templateTuringMachine copyOfPatternsForm = new templateTuringMachine(this, 2);

            copyOfPatternsForm.Text = "Copia de patrones";
            copyOfPatternsForm.Show();
            this.Visible = false;
        }
Пример #4
0
        private void goToSum_Click(object sender, EventArgs e)
        {
            templateTuringMachine sumForm = new templateTuringMachine(this, 3);

            sumForm.Text = "Suma";
            sumForm.Show();
            this.Visible = false;
        }
Пример #5
0
        private void goToPalindrome_Click(object sender, EventArgs e)
        {
            templateTuringMachine palindromeForm = new templateTuringMachine(this, 1);

            palindromeForm.Text = "Palíndromo";
            palindromeForm.Show();
            this.Visible = false;
        }