我想将图像设置为背景,以便将按钮放在它上面,所以我使用了Overlay图层。 Ι只是想改变按钮的位置并将它们放在图片上方,但我找不到方法。
public static void main(String[] args){
Menu program = new Menu();
SwingUtilities.invokeLater(program);
}
public void run() {
JFrame frame = new JFrame () ;
Get_size get_size = new Get_size() ;
get_size.Size_screen() ;
int h = (int)height ;
int w = (int) width;
frame.setSize(w , h );
JPanel panel = new JPanel();
//Create the first button
JButton appointment = new JButton("Appointment menu & Diary");
appointment.setPreferredSize(new Dimension(500,32));
appointment.setFont(new Font("Algerian", Font.PLAIN , 24));
panel.add(appointment) ;
//Create the second button
JButton patient_profile = new JButton("Patient Profile");
patient_profile.setPreferredSize(new Dimension(300, 32));
patient_profile.setFont(new Font("Algerian", Font.PLAIN , 24));
panel.add(patient_profile) ;
JPanel over = new JPanel();
LayoutManager overlay = new OverlayLayout(over);
over.setLayout(overlay);
JPanel imagen1 = new JPanel();
ImageIcon image = new ImageIcon("menu.jpg") ;
imagen1.add(new JLabel(image));
over.add(imagen1);
over.add(panel);
frame.add(over);
//sets the size of the frame
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
//makes it so you can close
frame.setVisible(true);
// Set the frame of the size non-resizable
frame.setResizable(false);
}
答案 0 :(得分:0)
你必须定义布局。它是null或框架布局或边框等。
在这里查看https://docs.oracle.com/javase/tutorial/uiswing/layout/visual.html
答案 1 :(得分:0)
over.add(imagen1);
over.add(panel);
按照与添加相反的顺序摆动组件。因此,上面的代码将绘制面板,然后在面板顶部绘制图像,这样您才能看到图像。
代码应该颠倒过来:
over.add(panel);
over.add(imagen1);
现在,面板将绘制在图像的顶部。但是,由于面板是不透明的,您将看不到图像,因此您还需要使面板不透明:
JPanel panel = new JPanel();
panel.setOpaque(false);