-
Type:
Bug
-
Resolution: Won't Fix
-
Priority:
P4
-
Affects Version/s: 8
-
Component/s: javafx
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.