Question: JAVA Given the following JavaFX program, write the code segment following the comment Insert code here that will create a Rectangle at the screen position
JAVA
Given the following JavaFX program, write the code segment following the comment "Insert code here" that will create a Rectangle at the screen position 10,10 and place it in a pane. You will also need to bind the rectangle to the dimensions of the display window so that if the window is re-sized, the rectangle will remain 20 pixels from all four edges of the screen. Just write your code in Blackboard, don't include the original code.

********************************************************************* // public class CenteredRectangle extends Application { @Override // Override the start method in the Application class public void start(Stage primaryStage) { // Insert code here // Create a scene and place it in the stage Scene scene = new Scene(pane, 250, 150); primaryStage.setTitle("CenteredRectangle"); // Set the stage title primaryStage.setScene(scene); // Place the scene in the stage primaryStage.show(); // Display the stage } //
entered ect
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
