最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

java - How to show cursor in TextField with selected text in JavaFX? - Stack Overflow

programmeradmin3浏览0评论

I have a text field where text should be selected. But when all text is selected the cursor is not visible. This is my code:

public class NewMain1 extends Application {

    @Override
    public void start(Stage primaryStage) {
        var badTextField = new TextField("Some text");
        VBox root = new VBox(badTextField);
        root.setPadding(new Insets(15));
        Scene scene = new Scene(root, 300, 100);
        primaryStage.setScene(scene);
        primaryStage.show();
    }

    public static void main(String[] args) {
        launch(args);
    }
}

And this is output:

As you see the cursor in not visible when text is selected. At the same time in Swing cursor is visible:

Could anyone say how to show cursor with selected text in TextField if it is possible?

发布评论

评论列表(0)

  1. 暂无评论