Questo sito utilizza cookies solo per scopi di autenticazione sul sito e nient'altro. Nessuna informazione personale viene tracciata. Leggi l'informativa sui cookies.
Username: Password: oppure
Equation Solver - Form4.cs

Form4.cs

Caricato da: Matthew
Scarica il programma completo

  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Text;
  7. using System.Windows.Forms;
  8.  
  9. namespace Equazioni_2
  10. {
  11.     public partial class Form4 : Form
  12.     {
  13.         public Form4()
  14.         {
  15.             InitializeComponent();
  16.         }
  17.  
  18.         public static int g;
  19.  
  20.         private void bt_grado_Click(object sender, EventArgs e)
  21.         {
  22.             Form1.grado = Convert.ToInt32(numericUpDown1.Text);
  23.             g = Form1.grado;
  24.             Form1.ok = true;
  25.             this.Close();
  26.         }
  27.  
  28.         private void button1_Click(object sender, EventArgs e)
  29.         {
  30.             this.Close();
  31.         }
  32.  
  33.         private void numericUpDown1_ValueChanged(object sender, EventArgs e)
  34.         {
  35.  
  36.         }
  37.     }
  38. }