0

我有一个弹出的模式对话框,其中包含文本框。如果用户将鼠标悬停在文本框上(因此 TEXT 光标显示)然后按 Enter 关闭对话框,则光标将留在 TEXT 状态。到目前为止,我还没有找到以编程方式将其更改回默认状态的方法。如果我在主场景上尝试其他光标(如 HAND 或 MOVE),它会起作用。但默认没有。

我使用的是最近几个月下载时“新鲜”的 JavaFx / JDK 1.7。我在 Windows 8.1 上。

我已经在网上搜索了很多,但没有发现任何提及它。这是一个已知的错误?任何人都可以提出解决方法或解释发生了什么吗?

代码示例如下。只需单击对话框中的文本编辑,将鼠标悬停在文本框上,使光标为 TEXT,然后按 Enter。

package jfxtest;

import javafx.application.Application;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.scene.Cursor;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.TextField;
import javafx.scene.layout.VBox;
import javafx.stage.Modality;
import javafx.stage.Stage;

public class Jfxtest extends Application {
    public static void main(String[] args) {
        launch(args);
    }

    @Override public void start(final Stage primaryStage) {
        Button btn = new Button();
        btn.setText("Open Dialog");
        btn.setOnAction(
            new EventHandler<ActionEvent>() {
                @Override public void handle(ActionEvent event) {
                    final Stage dialog = new Stage();
                    dialog.initModality(Modality.APPLICATION_MODAL);
                    dialog.initOwner(primaryStage);

                    final TextField txt = new TextField("Hit Enter while I have focus and the mouse is over me!");
                    txt.setMinWidth(280);

                    Button btnOk = new Button("OK");
                    btnOk.setDefaultButton(true);
                    btnOk.setOnAction(
                        new EventHandler<ActionEvent>() {
                            @Override public void handle(ActionEvent event) {
                                // these don't work
                                txt.setCursor(Cursor.DEFAULT);
                                dialog.getScene().setCursor(Cursor.DEFAULT);
                                primaryStage.getScene().setCursor(Cursor.DEFAULT);

                                dialog.close();

                                // and these don't work
                                txt.setCursor(Cursor.DEFAULT);
                                dialog.getScene().setCursor(Cursor.DEFAULT);
                                primaryStage.getScene().setCursor(Cursor.DEFAULT);
                            }
                        } );

                    VBox dialogVbox = new VBox(20);
                    dialogVbox.getChildren().add(txt);
                    dialogVbox.getChildren().add(btnOk);

                    Scene dialogScene = new Scene(dialogVbox, 300, 200);
                    dialog.setScene(dialogScene);
                    dialog.showAndWait();

                    // and these doesn't work
                    dialogScene.setCursor(Cursor.DEFAULT);
                    primaryStage.getScene().setCursor(Cursor.DEFAULT);

                    // but this works as expected (!), although it doesn't solve my problem
//                  primaryStage.getScene().setCursor(Cursor.HAND);
                }
            } );

        VBox vbox = new VBox(20);
        vbox.getChildren().add(btn);

        Scene scene = new Scene (vbox, 400, 300);
        primaryStage.setScene(scene);
        primaryStage.show();
    }
}
4

0 回答 0