Auto complete textbox in Java Swing

后端 未结 5 666
青春惊慌失措
青春惊慌失措 2021-01-03 02:54

Is there any good ready made Java Swing component that can be used to implement auto complete textbox?

5条回答
  •  耶瑟儿~
    2021-01-03 03:47

    I hated the idea of a third-party solution, so I was always looking a way far from it. I've settle with the JTextField and a hidden JComboBox solution when I was looking with the same idea. Lately, I found something new, and seems like nobody's looking at it as alternative solution. Doing like, textfield and a clean JPopUpMenu. . .

    https://www.geeksforgeeks.org/java-swing-jpopupmenu/

    Maybe it could help, for others at least. . .

提交回复
热议问题