博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
JAVA:URL之图像图标
阅读量:5340 次
发布时间:2019-06-15

本文共 1007 字,大约阅读时间需要 3 分钟。

1 //设计图像图标 2 import javax.swing.*; 3 import java.awt.*; 4 public class TestImageIcon extends JFrame 5 { 6        private ImageIcon icon1 = new ImageIcon("ToolImages/20.gif");//"ToolImages/20.gif"为该project文件夹下的路劲 7        private ImageIcon icon2 = new ImageIcon("ToolImages/21.gif"); 8        private ImageIcon icon3 = new ImageIcon("ToolImages/22.gif"); 9        public TestImageIcon()10        {11            setLayout(new GridLayout(1,3,5,5));12            add(new JButton(icon1));13            add(new JLabel(icon2));14            add(new JButton(icon3));15         }16         public static void main(String[] agrs)17         {18             JFrame frame = new TestImageIcon();19             frame.setTitle("TestImageIcon");20             frame.setLocationRelativeTo(null);21             frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);22             frame.setSize(500,300);23             frame.setVisible(true);24         }25 }

 

 

 

转载于:https://www.cnblogs.com/KeenLeung/archive/2012/05/26/2519106.html

你可能感兴趣的文章
把word文档中的所有图片导出
查看>>
ubuntu 18.04取消自动锁屏以及设置键盘快捷锁屏
查看>>
arcgis api 4.x for js 结合 Echarts4 实现散点图效果(附源码下载)
查看>>
YTU 2625: B 构造函数和析构函数
查看>>
加固linux
查看>>
Hyper-V虚拟机上安装一个图形界面的Linux系统
查看>>
【Crash Course Psychology】2. Research & Experimentation笔记
查看>>
关于 linux 的 limit 的设置
查看>>
MTK笔记
查看>>
【题解】 bzoj1597: [Usaco2008 Mar]土地购买 (动态规划+斜率优化)
查看>>
fat32转ntfs ,Win7系统提示对于目标文件系统文件过大解决教程
查看>>
shell cat 合并文件,合并数据库sql文件
查看>>
python全栈 计算机硬件管理 —— 硬件
查看>>
Delphi7编译的程序自动中Win32.Induc.a病毒的解决办法
查看>>
egret3D与2D混合开发,画布尺寸不一致的问题
查看>>
struts1和struts2的区别
查看>>
Redis常用命令
查看>>
微软职位内部推荐-Sr. SE - Office incubation
查看>>
C#类与结构体究竟谁快——各种函数调用模式速度评测
查看>>
我到底要选择一种什么样的生活方式,度过这一辈子呢:人生自由与职业发展方向(下)...
查看>>