22

I want to add a method to a button which is defined in my Controller class

in the console is only an error which tells me that it couldn't find the method

here is the code

sample.fxml

<?xml version="1.0" encoding="UTF-8"?>
<?import java.lang.*?>
<?import java.util.*?>
<?import javafx.scene.*?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>

<AnchorPane id="AnchorPane" prefHeight="200" prefWidth="320" xmlns:fx="http://javafx.com/fxml" fx:controller="sample.Controller">
    <children>
        <Button layoutX="126" layoutY="90" text="lololol" onAction="#test"  fx:id="button" />
    </children>
</AnchorPane>

and the Controller.java

package sample;

import javafx.fxml.FXML;
import javafx.fxml.Initializable;

import java.awt.event.ActionEvent;
import java.net.URL;
import java.util.ResourceBundle;

public class Controller implements Initializable
{
    @Override
    public void initialize(URL url, ResourceBundle resourceBundle)
    {
    }
    @FXML
    private void test(ActionEvent event)
    {
        System.out.println("lollolol");
    }
}
Benjamin
  • 1,348
  • 2
  • 12
  • 25
Jhon Smith
  • 347
  • 2
  • 3
  • 9

1 Answers1

52

Replace:

import java.awt.event.ActionEvent;

with:

import javafx.event.ActionEvent;
Puce
  • 37,247
  • 13
  • 80
  • 152