經過大量研究,我只能使用標籤獲取該圖像。現在我無法改變它的位置。我嘗試了很多功能。我需要什麼確切的功能更改JLabel的位置
public class Board extends JFrame {
private ImageIcon image;
private JLabel label;
public Board() {
image = new ImageIcon(getClass().getResource("board.png"));
label = new JLabel(image);
label.setLocation(200, 0); //This is the one that I expected to do the thing
add(label);
}
public static void main(String [] args) {
Board b = new Board();
b.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
b.setVisible(true);
b.setSize(1280, 1000);
}
}
你想達到什麼目的? – 2015-03-13 19:07:49
你對佈局有什麼想法嗎? – emin 2015-03-13 19:08:14
我正在開發一個壟斷應用程序,這個圖像是我的董事會。董事會現在在中心。我希望它在框架的左上部分。 – Mehr 2015-03-13 19:17:21