如下图,开发时,设置图片为按钮,可是还有一个非常难看的边框,如前两个按钮,怎么去掉按钮外面难看的边框呢。
解决方法:
jp1 = new JPanel();
jp1_jb2.addActionListener(this);
jp1_jb3 = new JButton(new ImageIcon("image/clear.gif"));
jp1_jb3.setBorder(BorderFactory.createEmptyBorder());
jp1.add(jp1_jb3);
关于BorderFactory详见: