Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write a java fix program that displays a green circle and when the mouse is clicked within the application, the circle is moved to that

Write a java fix program that displays a green circle and when the mouse is clicked within the application, the circle is moved to that position in the pane.

A. Write the code that will register the ClickHandler class for click events on pane p.

B. Write the code for the ClickHandler class that will move the circle circ to the position of the mouse click.

import javafx.application.Application; import javafx.event.EventHandler; import javafx.scene.Scene; import javafx.scene.input.MouseEvent; import javafx.scene.layout.Pane; import javafx.scene.paint.Color; import javafx.scene.shape.Circle; import javafx.stage.Stage; public class CircleMove extends Application { private Circle circ; @Override public void start(Stage primaryStage) throws Exception { Pane p = new Pane(); circ = new Circle( 50, 50, 20, Color.FORESTGREEN); p.getChildren().add(circ); // *A* Register the click handler to handle click events on the pane p Scene sc = new Scene(p, 300, 300); primaryStage.setScene(sc); primaryStage.setTitle("Moving Circle"); primaryStage.show(); } private class ClickHandler implements EventHandler { @Override public void handle(MouseEvent event) { // *B* move the circle circ to the position of the mouse click } }

public static void main(String[] args) { launch(args); } }

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Security

Authors: Alfred Basta, Melissa Zgola

1st Edition

1435453905, 978-1435453906

Students also viewed these Databases questions

Question

What is production management?

Answered: 1 week ago