-
Bug
-
Resolution: Won't Fix
-
P4
-
8
Drop a Button
From the inspector Code section, set the "On Mouse Clicked" event handler to "mouseClicked"
View>Show Sample Controller Skeleton:
@FXML
void mouseClicked(ActionEvent event) {
}
==> the event type is wrong: it should be MouseEvent instead of ActionEvent.
Same issue with Key events.
From the inspector Code section, set the "On Mouse Clicked" event handler to "mouseClicked"
View>Show Sample Controller Skeleton:
@FXML
void mouseClicked(ActionEvent event) {
}
==> the event type is wrong: it should be MouseEvent instead of ActionEvent.
Same issue with Key events.