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(); }
private void bQuery_Click(object sender, EventArgs e) { fcManager = new FormControlManager(lbDisplay); fcManager.update(ComputerType()); fcManager.display(); }