GUI编程day07

这篇博客介绍了如何在Java GUI中使用JDialog创建弹窗,并展示了自定义图标和ImageIcon的用法。通过DialogDemo01类创建了一个主窗口,其中包含一个按钮,点击按钮会弹出一个包含文本的JDialog窗口。此外,还展示了IconDemo类如何实现自定义图标,并在JLabel中展示。ImageIconDemo类则演示了如何从资源文件加载图片并设置为JLabel的图标。
摘要由CSDN通过智能技术生成

GUI编程day07

弹窗

JDiolog,用来被弹出,默认就有关闭事件

//主窗口
public class DialogDemo01 extends JFrame {
    public DialogDemo01() {
        this.setVisible(true);
        this.setSize(500,300);
        this.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);

        //JFrame 放东西,容器
        Container container = this.getContentPane();
        //绝对布局
        container.setLayout(null);

        //按钮
        JButton jbutton = new JButton("点击弹出一个对话框");//创建
        jbutton.setBounds(100,100,100,50);
        jbutton.addActionListener(new ActionListener() {
            @Override
            public void actionPerformed(ActionEvent e) {
                //弹窗
                new MyDialog();
            }
        });

        container.add(jbutton);

    }
    public static void main(String[] args) {
        new DialogDemo01();

    }
}

//弹窗的窗口
class MyDialog extends JDialog {
    public MyDialog(){
        this.setVisible(true);
        this.setSize(200,100);

        Container container = this.getContentPane();
        //container.setLayout(null);
        container.add(new JLabel("排球少年"));
    }
}

标签

ICON

//图标,需要实现类,Frame继承
public class IconDemo extends JFrame implements Icon {

    private int width;
    private int height;
    public IconDemo(){}//无参构造
    public IconDemo(int width,int height){
        this.height = height;
        this.width = width;
    }
    public void init() {
        IconDemo icondemo = new IconDemo(15,15);
        //图标可以放在该标签上,也可以放在按钮上
        JLabel jlabel = new JLabel("icontest",icondemo,SwingConstants.CENTER);
        Container container = getContentPane();
        container.add(jlabel);

        this.setVisible(true);
        this.setSize(500,300);
        this.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
    }


    public static void main(String[] args) {
        new IconDemo().init();

    }

    @Override
    public void paintIcon(Component c, Graphics g, int x, int y) {
        g.fillOval(x,y,width,height);
    }

    @Override
    public int getIconWidth() {
        return this.width;
    }

    @Override
    public int getIconHeight() {
        return this.height;
    }
}

ImageIcon

public class ImageIconDemo extends JFrame {

    public ImageIconDemo(){
        //获取图片的地址
        JLabel label = new JLabel("ImageIcon");
        URL url = ImageIconDemo.class.getResource("sc.jpg");

        ImageIcon imageicon = new ImageIcon(url);
        label.setIcon(imageicon);
        label.setHorizontalAlignment(SwingConstants.CENTER);

        Container container = getContentPane();
        container.add(label);

        setVisible(true);
        setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
    }

    public static void main(String[] args) {
        new ImageIconDemo();

    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值