Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在任何程序中,或者至少在大多数程序中,当您选择一个按钮或任何东西时,都会有一个由点组成的线组成的选择框。
你如何摆脱那个盒子?
之所以要这么做,是因为我有一个带图片的按钮,没有contentFill,没有边框,选中的时候看起来很别扭。
setFocusable(...)通过调用其方法使按钮或组件不可聚焦:
setFocusable(...)
myButton.setFocusable(false);
编辑 ......或者甚至更好:
myButton.setFocusPainted(false);
这样,如果需要,组件仍然可以获得焦点,但只是不显示焦点边框。