Beispiel #1
0
        private void newGraphToolStripMenuItem_Click(object sender, EventArgs e)
        {
            Form newgraph = new GeneticFunction();

            newgraph.Height = this.Height;
            newgraph.Width  = this.Width;
            newgraph.Show();
        }
Beispiel #2
0
        private void textBoxEquation_MouseDoubleClick(object sender, MouseEventArgs e)
        {
            GeneticFunction newgraph = new GeneticFunction();

            newgraph.Height             = this.Height;
            newgraph.Width              = this.Width;
            newgraph.Settings.FunctionA = this.textBoxEquation.Text;
            newgraph.Show();
        }
Beispiel #3
0
 private void newGraphToolStripMenuItem_Click(object sender, EventArgs e)
 {
     Form newgraph = new GeneticFunction();
     newgraph.Height = this.Height;
     newgraph.Width = this.Width;
     newgraph.Show();
 }
Beispiel #4
0
 private void textBoxEquation_MouseDoubleClick(object sender, MouseEventArgs e)
 {
     GeneticFunction newgraph = new GeneticFunction();
     newgraph.Height = this.Height;
     newgraph.Width = this.Width;
     newgraph.Settings.FunctionA = this.textBoxEquation.Text;
     newgraph.Show();
 }