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.
这是 我的部分界面的图片。图像是具有透明背景的圆形,但在按钮内未正确居中。我想知道是否可以手动将其移动到位。
您所要做的就是创建一个 JToggleButton,然后将按钮的图标设置为您正在使用的图像
JToggleButton button = new JToggleButton(new ImageIcon("path to image"));
那应该创建按钮,并将图像放入按钮的中心。
希望有帮助!