我正在尝试将ActionListener添加到用户输入错误密码或登录时弹出的标签。 这是我的登录控制器
public class LoginController implements Initializable {
@FXML
private Label label;
@FXML
private TextField LoginField;
@FXML
private PasswordField PasswdField;
@FXML
private Button LogInButton;
@FXML
private Label IncorrectDataLabel;
//private String uri = "http://google.com";
@FXML
private void LogIn(ActionEvent event) throws IOException {
if(LoginField.getText().equals("MKARK")&&PasswdField.getText().equals("KACZOR1"))
{
Parent parent = FXMLLoader.load(getClass().getResource("/fxmlFiles/MainScreen.fxml"));
Scene MainScene = new Scene(parent);
Stage stage = (Stage) ((Node) event.getSource()).getScene().getWindow();
stage.setScene(MainScene);
stage.show();
}
else
{
IncorrectDataLabel.setVisible(true);
// <------------------- Here I want to bind hyperlink to a label with would open the google site, whenever user clicks it.
}
@Override
public void initialize(URL url, ResourceBundle rb) {
// TODO
}
我如何解决这个问题?我已经多次尝试过(setOnAction,addMouseListener),但没有任何效果:(。
如果您不介意我也会询问public void initialize函数。它是为了什么?它在我创建课程时自动弹出。
提前致谢
答案 0 :(得分:2)
标签不会触发动作事件。您可以使用侦听器来执行鼠标单击事件,例如:
@FXML
private void gotoGoogle() {
// open url etc
}
和FXML文件
<Label fx:id="IncorrectDataLabel" onMouseClicked="#gotoGoogle" ... />
然而,为此使用Hyperlink
可能更有意义,这将为用户提供更好的视觉反馈,即他们应该点击的内容。只需用
<Hyperlink fx:id="IncorrectDataLabel" onAction="#gotoGoogle" text="..." ... />
并相应地更新控制器中的类型:
@FXML
private Hyperlink IncorrectDataLabel ;
您需要在FXML文件和控制器中对javafx.control.Hyperlink
进行适当的导入。
偏离主题说明:使用proper Java naming conventions作为变量和方法名称。