Advertisement
Guest User

Untitled

a guest
Apr 21st, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.35 KB | None | 0 0
  1. rect.setOnMouseClicked(new EventHandler<MouseEvent>() {
  2.                     @Override
  3.  
  4.                     public void handle(MouseEvent event) {
  5.                        
  6.                         Rectangle rect = (Rectangle) event.getSource();
  7.                         rect.fillProperty().setValue(Color.BLUE);
  8.  
  9.                     }
  10.                 });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement