Esempio n. 1
0
File: Form1.cs Progetto: rNdm74/C-
        private void bContinent_Click(object sender, EventArgs e)
        {
            // Get the button
            Button b = (Button)sender;

            // Update the formControlManager with the selectContinent
            formControlManager.update(b.Text);

            // Draw the animals to the screen
            formControlManager.draw();
        }
Esempio n. 2
0
File: Form1.cs Progetto: rNdm74/C-
 private void bQuery_Click(object sender, EventArgs e)
 {
     fcManager = new FormControlManager(lbDisplay);
     fcManager.update(ComputerType());
     fcManager.display();
 }
Esempio n. 3
0
File: Form1.cs Progetto: rNdm74/C-
 private void bQuery_Click(object sender, EventArgs e)
 {
     fcManager = new FormControlManager(lbDisplay);
     fcManager.update(ComputerType());
     fcManager.display();
 }