⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 imageexample.java

📁 Eclipse+SWTJFace开发实战精解 第二部分 SWT组件篇
💻 JAVA
字号:
/**@author WangJinTao,MengQingChang 2006
 */
package other.widget;

import org.eclipse.swt.*;
import org.eclipse.swt.widgets.*;
import org.eclipse.swt.events.*;
import org.eclipse.swt.graphics.*;
public class ImageExample {
	public ImageExample() {
		final Display display = Display.getDefault();
		final Shell shell = new Shell();
		shell.setSize(300, 180);
		shell.setText("Image实例");
		Image image = new Image(display, "icons/eclipse0.gif");
		// 设置窗体标题图标
		shell.setImage(image);
		Button buttona = new Button(shell, SWT.NONE);
		buttona.setBounds(10, 20, 80, 30);
		Image i = new Image(display, "icons/remove.gif");
		buttona.setImage(i);
		Button buttonb = new Button(shell, SWT.NONE);
		buttonb.setBounds(100, 20, 80, 30);
		final Image img = new Image(display, 40, 24);
		Color color = display.getSystemColor(SWT.COLOR_BLUE);
		GC gc = new GC(img);
		gc.setBackground(color);
		gc.fillRectangle(img.getBounds());
		gc.dispose();
		color.dispose();
		buttonb.addPaintListener(new PaintListener() {
			public void paintControl(PaintEvent e) {
				e.gc.drawImage(img, 20, 3);
			}
		});
		shell.open();
		shell.layout();
		while (!shell.isDisposed()) {
			if (!display.readAndDispatch())
				display.sleep();
		}
		image.dispose();
		i.dispose();
		img.dispose();
		display.dispose();
	}
	public static void main(String[] args) {
		new ImageExample();
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -