gpt4 book ai didi

GUI 类中的 Java 图像

转载 作者:行者123 更新时间:2023-12-02 04:31:55 25 4
gpt4 key购买 nike

您好,我正在开发一个自定义时钟应用程序。

我的 GUI 工作发现我的功能很好,但我现在有一个问题 3 天了。我无法让 GUI 在后台显示图像而不隐藏我的组件。

这是我的 GUI 类的代码

public void makeFrame()  {
contentPane.setLayout(new BorderLayout());
contentPane.add(panel1, BorderLayout.NORTH);
contentPane.add(panel2, BorderLayout.CENTER);
contentPane.add(panel3, BorderLayout.SOUTH);
contentPane.add(panel4, BorderLayout.WEST);
contentPane.add(panel5, BorderLayout.EAST);
panel1.add(label1);
panel2.setLayout(new GridLayout(3,4));
panel2.add(time);
panel2.add(label2);
panel2.add(stopwatch);
panel3.setLayout(new FlowLayout());
panel4.setLayout(new FlowLayout());
panel5.add(alarm);
panel5.add(change);
panel5.setLayout(new FlowLayout());
label1.setFont(new Font("Arial", Font.PLAIN, 90));
label1.setForeground(Color.BLUE);
label2.setFont(new Font("Arial", Font.PLAIN, 70));
label2.setForeground(Color.RED);
time.setEditable(true);
time.setText("Sample Time: n/ 13:45:23 ");
time.setFont(new Font("Arial", Font.PLAIN, 60));
stopwatch.setFont(new Font("Arial", Font.PLAIN, 45));
stopwatch.setSize(20,20);
stopwatch.setText("00 : 00 : 00");
stopwatch.setEditable(false);
stopwatch.add(rounds);

frame = new JFrame("Clock");
frame.setLayout(null);
frame.setSize(600,900);
paint();
frame.setContentPane(contentPane);
makeMenu();
comboBox();
stopWatch();

frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.validate();
frame.pack();
frame.setVisible(true);
frame.setLocationRelativeTo(null);


}

和paint()方法

 public void paint() {
BufferedImage img = null;
try {
//load the image
img = ImageIO.read(new File("C:/Users/User/workspace/Alarm Clock/src/Clock/clock.jpg"));

ImageIcon image = new ImageIcon(img);
JLabel label = new JLabel(image);
frame.setContentPane(label);

} catch (IOException e) {

}
}

最佳答案

contentPane.add(panel1, BorderLayout.NORTH);
contentPane.add(panel2, BorderLayout.CENTER);

您的代码正在向内容 Pane 添加面板,这很好。

frame.setContentPane(label);

但随后在 Paint() 方法中,您用标签替换了内容 Pane ,因此您丢失了所有原始面板。

首先,您不应该重写 JFrame 上的paint()。如果您曾经进行自定义绘画,您应该重写 JPanel 的 PaintComponent() 方法并将面板添加到框架中。另外,绘画方法仅用于绘画,您不应该在绘画方法中创建组件并将其添加到 GUI。您也不应该以绘画方法读取图像。绘画应该非常高效。

因此,为了解决您的问题,我建议您可以使用 BackgroundPanel 。这是一个支持图像绘制的自定义面板,它将使您添加到其中的任何组件变得不透明。您可以 1) 按原始大小绘制背景图像,2) 缩放以填充面板,3) 平铺。

基本代码是:

//contentPane.setLayout(new BorderLayout());
BackgroundPanel contentPane = new BackgroundPanel(...); // choose your constructor
frame.setContentPane( contentPane );
contentPane.add(panel1, BorderLayout.NORTH);
...

关于GUI 类中的 Java 图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31344638/

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