JAVA GUI 做一个学生信息窗口

package gui;
import java.awt.FlowLayout;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.SwingConstants;
import javax.swing.Icon;
import javax.swing.ImageIcon;
public class LabelFrame extends JFrame {
    private final JLabel label1;
    private final JLabel label2;
    private final JLabel label3;
    private final JLabel label4;
    public LabelFrame()
    {
        super("Student information");
        setLayout(new FlowLayout());
        label1 = new JLabel("Student name: Amy");
        label1.setToolTipText("studentA");
        add(label1);

        Icon photo = new ImageIcon(getClass().getResource( "photo.gif"));
        label2 = new JLabel("student photo:", photo,SwingConstants.RIGHT);
        label2.setHorizontalTextPosition(SwingConstants.LEFT);
        //Icon photo = new ImageIcon(getClass().getResource( "photo.gif"));
        add(label2);

        label3 = new JLabel("Student number: 123456");
        label3.setToolTipText("123456");
        add(label3);

        label4 = new JLabel("Student major: CS");
        add(label4);
    }
    public static void main(String[] args)
    {
        LabelFrame labelFrame = new LabelFrame();
        labelFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        labelFrame.setSize(260,180);
        labelFrame.setVisible(true);
    }
}
全部评论

相关推荐

11-15 17:19
湖南大学 Java
成果成果成果果:这是哪个公司的hr,这么离谱吗,我没见过用性别卡技术岗的,身边女性同学拿大厂offer的比比皆是
点赞 评论 收藏
分享
挣K存W养DOG:他真的很中意你,为什么不回他
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务