如何使用 Eclipse 删除 JButton 中图标的边框?
How to remove the border of an Icon in a JButton using Eclipse?
第一次在这里提问。首先,Eclipse(据我所知)不允许您直接通过设计选项卡重新调整图像尺寸,因此为了解决这个问题,我制作了一种方法,将图标从 ImageIcon 转换为图像,重新调整尺寸,然后将其转换回来。问题是,当我使用重新标注尺寸的图像时,它在 JButton 中看起来像 this。
我已经尝试在 JButton 中创建一个空边框,但这只会删除按钮的边框,而不是图标。我怎样才能删除它?
编辑:
刚刚注意到当 Window 没有聚焦时边框不存在? Image related
Just noticed that when the Window is not focused the border is not there?
button.setFocusPainted( false );
第一次在这里提问。首先,Eclipse(据我所知)不允许您直接通过设计选项卡重新调整图像尺寸,因此为了解决这个问题,我制作了一种方法,将图标从 ImageIcon 转换为图像,重新调整尺寸,然后将其转换回来。问题是,当我使用重新标注尺寸的图像时,它在 JButton 中看起来像 this。
我已经尝试在 JButton 中创建一个空边框,但这只会删除按钮的边框,而不是图标。我怎样才能删除它?
编辑: 刚刚注意到当 Window 没有聚焦时边框不存在? Image related
Just noticed that when the Window is not focused the border is not there?
button.setFocusPainted( false );