Swing Java中JComponents周围的奇怪黑色边框

时间:2015-05-16 22:21:17

标签: java swing movable

我创建了一个带有可移动组件的UI。当我创建它时,它看起来像是最顶级的图片。一旦我开始移动它,按钮周围的空间就会变成黑色,如中间所示。当我进入另一个窗口(例如野生动物园)时,收音机盒周围的空间也会变黑。有什么想法吗?

enter image description here

enter image description here

编辑:

3button组合是一个扩展的JPalet类,它嵌入在框架中的另一个面板JPanel1中。一旦我在JPanel1中重新验证并重新绘制,该错误就会再次消失。或者当我将一个3按钮轻击另一个按钮时(这可能也会触发重绘)。

我使用mouseAdapter MouseDrag将一个mousemotionlistener粘贴到JButton上移动3Button

编辑:

希望这段代码片段足够小。

import java.awt.Point;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import javax.swing.*;

public class UiTestFrame {

    public UiTestFrame() {
        buildUi();
    }

    void buildUi() {
        JFrame frame = new JFrame("TestFrame");

        XButton jButton = new XButton();
        frame.add(jButton);
        jButton.setSize(jButton.getPreferredSize());
        jButton.setLocation(10, 10);
        frame.revalidate();
        frame.repaint();

        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setResizable(false);

        frame.setSize(500, 500);
        frame.setVisible(true);
    }

    private class XButton extends javax.swing.JPanel {

        public XButton() {

            initComponents();
            jButton1.addMouseMotionListener(new MotionEvent(this));
        }

        private void initComponents() {

            jButton1 = new javax.swing.JButton();
            jRadioButton1 = new javax.swing.JRadioButton();
            jRadioButton2 = new javax.swing.JRadioButton();

            setBackground(new java.awt.Color(0, 0, 0, 0f));
            setPreferredSize(new java.awt.Dimension(130, 30));
            setLayout(null);

            jButton1.setText("jButton1");
            jButton1.setAlignmentY(0.0F);
            jButton1.setContentAreaFilled(false);
            jButton1.setFocusPainted(false);
            jButton1.setFocusable(false);
            jButton1.setMargin(new java.awt.Insets(-2, -2, -2, -2));
            add(jButton1);
            jButton1.setBounds(19, 0, 90, 30);

            jRadioButton1.setEnabled(false);
            jRadioButton1.setFocusable(false);
            add(jRadioButton1);
            jRadioButton1.setBounds(0, 0, 20, 30);

            jRadioButton2.setEnabled(false);
            jRadioButton2.setFocusable(false);
            jRadioButton2.setName(""); // NOI18N
            add(jRadioButton2);
            jRadioButton2.setBounds(100, 0, 30, 30);
        }

        private javax.swing.JButton jButton1;
        private javax.swing.JRadioButton jRadioButton1;
        private javax.swing.JRadioButton jRadioButton2;

    }

    private class MotionEvent extends MouseAdapter {

        javax.swing.JComponent button;
        Point pt;

        public MotionEvent(javax.swing.JComponent button) {
            this.button = button;
        }

        public void mouseMoved(MouseEvent e) {
            pt = e.getPoint();
        }

        public void mouseDragged(MouseEvent e) {
            Point p = SwingUtilities.convertPoint(button, e.getPoint(), button.getParent());
            button.setLocation(p.x - pt.x, p.y - pt.y);
        }
    }
}

1 个答案:

答案 0 :(得分:2)

setBackground(new java.awt.Color(0, 0, 0, 0f));

然后问题是你使用的是透明色,所以背景没有正确绘制。

相反,您可以使用:

setOpaque( false );

有关透明度可能导致问题的原因的详细信息,请查看Background With Transparency

另外,请勿使用null布局。您可以使用简单的BorderLayout。将单选按钮添加到BorderLayout.LINE_START和BorderLayout.LINE_END以及按钮到BorderLayout.CENTER。

使用布局管理器时,组件将确定组件的首选大小,以便可以在其他面板中使用。否则,您需要覆盖组件的getPreferredSize()getMinimumSize()以及getMaximumSize()方法,以返回正确的大小。