SWT学习1

第一步,搭建开发环境

      eclipse是必要的,导入五个Jar包,如下:

    org.eclipse.core.runtime_3.6.0.v20100505.jar

    org.eclipse.jface_3.6.0.I20100601-0800.jar

    org.eclipse.swt.win32.win32.x86_3.6.0.v3650b.jar

    org.eclipse.swt_3.6.0.v3650b.jar

    org.eclipse.ui.workbench_3.6.0.I20100603-1100.jar

    说明:这些jar文件都可以在eclipse安装文件下plugins文件夹中找到。


第二步,hello world

package lpc;


import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.widgets.Shell;

public class Helloworld {
    public Helloworld(){
    	Display display = new Display();
    	Shell shell = new Shell(display, SWT.SHELL_TRIM); // shell是程序的主窗体
    	shell.setText("Hello world");
	shell.setSize(250, 100);     	
	Label label = new Label(shell, SWT.NONE); 
        label.setText("Hello, World!");
	label.pack();
        shell.open();
        while(!shell.isDisposed())
        	if(!display.readAndDispatch()) 
        		display.sleep();
        		display.dispose();  
        		label.dispose();
      }
   public static void main(String[] args) {
	  new Helloworld();
   }
}
效果图:


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值