gpt4 book ai didi

java - 如何添加缓冲图像作为 JFrame 的背景,然后在此图像上添加面板?

转载 作者:行者123 更新时间:2023-12-01 23:50:19 24 4
gpt4 key购买 nike

我正在学习计算机工程的第二学期。

我的问题是如何在背景图像上添加 JButton 等...,你知道我已经编写了以下代码,请帮助我继续:正如我所说,我的 JBotton 无法显示在图像上,这就是问题所在。

import java.awt.Color;
import java.awt.Graphics;
import java.awt.Image;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;

import javax.imageio.ImageIO;
import javax.swing.JButton;
import javax.swing.JComponent;
import javax.swing.JFrame;
import javax.swing.JOptionPane;
import javax.swing.JPanel;

public class MyCalcFrame extends JFrame
{
private BufferedImage myImage;
private JPanel mypanel;
private JButton mybtn;

public MyCalcFrame()
{
this.setBounds(410, 110, 600, 450);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

this.setResizable(false);
this.setAlwaysOnTop(true);



try
{
this.myImage=ImageIO.read(new File("D:\\1.jpg"));
}//end try
catch(IOException e)
{
JOptionPane.showMessageDialog(null, "Image dose not exist.","NO Image found",JOptionPane.ERROR_MESSAGE);
}//end catch
this.mypanel=new JPanel();
this.mypanel.setBackground(Color.black);
this.setContentPane(new ImagePanel(myImage));
mybtn=new JButton("hello");
this.getContentPane().add(mybtn);

this.setVisible(true);
}//end MyCalcFrame constructor

class ImagePanel extends JComponent
{
private Image image;

public ImagePanel(Image image)
{
this.image = image;
}//end constructor
@Override
protected void paintComponent(Graphics g)
{
g.drawImage(image, 0, 0, null);
}//en paintComponent
}//end ImagePanel
//################ End constructor ########################
//public void paint(Graphics g)
//{
// g.drawImage(myImage, 0, 0, this);
//}//end method paint

//@@@@@@@@@@@@@@@@@@@@@@@@ main @@@@@@@@@@@@@@@@@@@@@@@@@@@@
public static void main(String[] args)
{
//JFrame.setDefaultLookAndFeelDecorated(true);
new MyCalcFrame();
}//end method main
//@@@@@@@@@@@@@@@@@@@@@@@@ main @@@@@@@@@@@@@@@@@@@@@@@@@@@@@
}//end class MyCalcFrame

最佳答案

JComponent 不使用布局管理器,因此当您添加按钮时它不会显示。

尝试在您的组件上使用 FlowLayout

此外,请勿对框架使用 setBounds()。您应该pack(),然后使用setLocationByPlatform(true),以便框架以其首选大小显示。

您需要为您的组件实现getPreferredSize(),这样才能正常工作。

关于java - 如何添加缓冲图像作为 JFrame 的背景,然后在此图像上添加面板?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16391680/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com