java GUI显示不正常
importjava.awt.*;importjavax.swing.*;publicclassTextextendsJFrame{publicJLabellab_p1;...
import java.awt.*;
import javax.swing.*;
public class Text extends JFrame{
public JLabel lab_p1;
public Text(){
this.setLocation(350,150);
this.setSize(300,300);
this.setResizable(false);
this.setDefaultCloseOperation(DISPOSE_ON_CLOSE);
this.setLayout(new FlowLayout());
this.setVisible(true);
Image img_p1;
img_p1 = Toolkit.getDefaultToolkit().getImage("./image/p1.jpg");
lab_p1 = new JLabel(new ImageIcon(img_p1));
lab_p1.setSize(200,200);
this.add(lab_p1);
}
public static void main(String[] args) {
new Text();
}
}
我想用lab_p1显示一张图片,但是运行时窗口上没有显示,要把窗口最小化,再点开才能正确显示,这是为什么?如何让它正常显示?
见图
上面的代码只是程序中的一小段,我运行程序时甚至连JMenueBar都不能正常显示,都得最小化再放大才行,不知为何 展开
import javax.swing.*;
public class Text extends JFrame{
public JLabel lab_p1;
public Text(){
this.setLocation(350,150);
this.setSize(300,300);
this.setResizable(false);
this.setDefaultCloseOperation(DISPOSE_ON_CLOSE);
this.setLayout(new FlowLayout());
this.setVisible(true);
Image img_p1;
img_p1 = Toolkit.getDefaultToolkit().getImage("./image/p1.jpg");
lab_p1 = new JLabel(new ImageIcon(img_p1));
lab_p1.setSize(200,200);
this.add(lab_p1);
}
public static void main(String[] args) {
new Text();
}
}
我想用lab_p1显示一张图片,但是运行时窗口上没有显示,要把窗口最小化,再点开才能正确显示,这是为什么?如何让它正常显示?
见图
上面的代码只是程序中的一小段,我运行程序时甚至连JMenueBar都不能正常显示,都得最小化再放大才行,不知为何 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询