-1

我正在开发一个程序的主菜单,我发现很难将 .png 文件应用到我的 JButton,这就是我到达的地方

public class Menu extends JFrame implements ActionListener {
public static void main(String[] args) {
    Color b = new Color(0,89,255);
    Color t = new Color(255,0,0);
    Color bttn = new Color (255,255,0);


    final JFrame frame = new JFrame ("Main Menu");
    frame.setVisible(true);
    frame.setSize(1000,750);
    frame.setDefaultCloseOperation(EXIT_ON_CLOSE);
    frame.setLocationRelativeTo(null);
    frame.setLayout(null);
    frame.setBackground(b);


    JButton start = new JButton ("Start");
    start.setBounds(300, 300, 150, 75);
    start.setForeground(t);


    JButton exit = new JButton ("Exit");
    exit.setBounds(550, 300, 150, 75);
    exit.setBackground(bttn);
    exit.setForeground(t);

请留下任何答案,因为我想快点

4

1 回答 1

2
myButton.setIcon(new ImageIcon("/path/to/image.png"));  

是您在创建JButton. 如果要在创建时添加图像,JButton则可以使用适当的构造函数。

JButton myButton = new JButton("What The Heck?", new ImageIcon("/path/to/image.png"));  

请不要使用null布局。改用 a LayoutManager

于 2013-11-05T15:52:02.943 回答