运行以下Java程序,窗口只有一小块,需要拖动窗口才能显示出组件。

importjavax.swing.*;importjava.awt.*;importjava.awt.event.*;publicclasslogintestexten... import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class logintest extends JFrame
{
private JLabel userNameLabel;
private JLabel passwordLabel;
private JButton login;
private JButton cancel;

public static void main(String[] args)
{
new logintest();
}
public logintest ()
{
setTitle("登录进销存管理系统");
loginPanel loginPanel = new loginPanel();
loginPanel.setLayout(null);
loginPanel.setBounds(450,200,loginPanel.getWidth(), loginPanel.getHeight());
getContentPane().add(loginPanel);

userNameLabel = new JLabel();
userNameLabel.setText("用户名");
userNameLabel.setBounds(100,135,200,25);
loginPanel.add(userNameLabel);

passwordLabel = new JLabel();
passwordLabel.setText("密码");
passwordLabel.setBounds(100,165,200,25);
loginPanel.add(passwordLabel);

login = new JButton();
login.setText("登录");
login.setBounds(180, 195, 60, 25);
loginPanel.add(login);

cancel = new JButton();
cancel.setText("取消");
cancel.addActionListener (new ActionListener()
{
public void actionPerformed (ActionEvent e)
{
System.exit(0);
}
});
cancel.setBounds(260, 195, 60, 25);
loginPanel.add(cancel);

setVisible(true);
setResizable(true);
setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
}
public class loginPanel extends JPanel
{
public ImageIcon icon;
public int width, height;
public loginPanel()
{
super();
icon = new ImageIcon("res/login.jpg");
width = icon.getIconWidth();
height = icon.getIconHeight();
setSize(width, height);
}

public void paintComponent(Graphics g)
{
super.paintComponent(g);
Image img = icon.getImage();
g.drawImage(img, 0, 0, getParent());
}

}
}
展开
 我来答
来自巢湖敬老慈幼的风车草
2013-03-20 · TA获得超过207个赞
知道小有建树答主
回答量:194
采纳率:0%
帮助的人:114万
展开全部
在public logintest ()这个方法中加入如下语句即可

this.setBounds(200, 100, 300, 200); //置窗体位置及大小
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式