0

所以我想知道是否可以将按钮、文本框、单词、进度条等内容放在已经存在的(在本例中为 JLabel)之上。这是我制作的底涂层框架的图像,后面是与这个底涂层框架相关的代码片段。

(我没有 10 声望,所以这里有一张照片的链接)

http://prntscr.com/15516f

Map.setTitle("Map");
Map.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
Map.setUndecorated(true);
Map.setBackground(new Color(0,0,0,0));
Map.setLayout(new FlowLayout());
JLabel Background = new JLabel(new ImageIcon(getClass().getResource("Map.png")));
  Background.addMouseListener(new MouseAdapter() {
    public void mousePressed(MouseEvent e) {
      initialClick = e.getPoint();
      getComponentAt(initialClick);
    }
  });
  Background.addMouseMotionListener(new MouseMotionAdapter() {
    @Override
    public void mouseDragged(MouseEvent e) {
      // get location of Window
      int thisX = Map.getLocation().x;
      int thisY = Map.getLocation().y;
      // Determine how much the mouse moved since the initial click
      int xMoved = (thisX + e.getX()) - (thisX + initialClick.x);
      int yMoved = (thisY + e.getY()) - (thisY + initialClick.y);
      // Move window to this position
      int X = thisX + xMoved;
      int Y = thisY + yMoved;
      Map.setLocation(X, Y);
    }
});
Map.add(Background);
Map.setSize(507,512);
Map.setLocation(0, 100);
Map.setResizable(false);
Map.setVisible(false);

在旁注中,我知道这是FlowLayout(),但是当我尝试添加其他内容时,它只会将自己放在我的地图上方或下方。我只是想知道我是否可以把东西放在这张地图上。也许我应该以除JLabel?

4

1 回答 1

0

研究JLayeredPane和类似的策略。有关更多详细信息,请参阅如何使用分层窗格

在此处输入图像描述

于 2013-05-16T09:30:47.333 回答