JPanel droppan = new JPanel ();
droppan.setLayout (new FlowLayout ());
bi1 = new ImageIcon ("");
b1 = new JButton (bi1);
//b1.setBorderPainted (false);
b1.setBorder (BorderFactory.createEmptyBorder (2,3,2,3));
b1.setContentAreaFilled (false);
b1.setSize (100,38);
//b1.setBounds(3,3,100,38);
droppan.add(b1);
b1.addMouseListener (this);
add(droppan);
这实际上是一排按钮,但上面的代码只是第一个按钮的片段。最初,第一个按钮有一个边框,除非我点击另一个按钮然后该按钮现在有边框,好像它“转移”如果你明白我的意思。
我做错了什么? setborderpainted是一个评论,因为即使它不在评论中,边界仍然存在
这是一个框架内的面板
答案 0 :(得分:3)
我“想”你所说的是用于显示哪个按钮具有焦点的焦点边框...
尝试使用b1.setFocusPainted(false);
代替
例如......
import java.awt.BorderLayout;
import java.awt.EventQueue;
import java.awt.FlowLayout;
import javax.swing.BorderFactory;
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.UIManager;
import javax.swing.UnsupportedLookAndFeelException;
public class ButtonRows {
public static void main(String[] args) {
new ButtonRows();
}
public ButtonRows() {
EventQueue.invokeLater(new Runnable() {
@Override
public void run() {
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) {
}
JFrame frame = new JFrame("Testing");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setLayout(new FlowLayout());
for (int index = 0; index < 10; index++) {
JButton b1 = new JButton(Integer.toString(index));
b1.setFocusPainted(false);
b1.setBorder(BorderFactory.createEmptyBorder(2, 3, 2, 3));
b1.setContentAreaFilled(false);
frame.add(b1);
}
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
});
}
}
此外,使用setSize
和setBounds
是可怕的,您应该让布局管理员处理这些细节。
我不知道您为什么使用MouseListener
按钮,但是当触发按钮时获取通知的首选方法是通过ActionListener
界面,作为按钮我的通过数字方式触发,而不仅仅是鼠标点击
仔细查看How to Use Buttons了解更多详情