java实现图片按钮Demo.rar
主要代码: this.setTitle("图片按钮Demo"); this.setSize(800, 600); Container container = getContentPane(); container.setLayout(null); JButton btn = new JButton(); btn.setBounds(10, 10, 100, 30); Icon icon = new ImageIcon("D:/temp/a.png"); btn.setIcon(icon); container.add(btn
下载地址
用户评论