Ejemplo n.º 1
0
Archivo: Form1.cs Proyecto: 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();
        }
Ejemplo n.º 2
0
Archivo: Form1.cs Proyecto: rNdm74/C-
 private void bQuery_Click(object sender, EventArgs e)
 {
     fcManager = new FormControlManager(lbDisplay);
     fcManager.update(ComputerType());
     fcManager.display();
 }
Ejemplo n.º 3
0
Archivo: Form1.cs Proyecto: rNdm74/C-
 private void bQuery_Click(object sender, EventArgs e)
 {
     fcManager = new FormControlManager(lbDisplay);
     fcManager.update(ComputerType());
     fcManager.display();
 }