*/ --------------------------------------------------------------------------------------
*/ 出自: 编程中国 http://www.bc-cn.net
*/ 作者: 初入迷途 E-mail:tgyun@163.com QQ:414021783
*/ 时间: 2007-10-29 编程论坛首发
*/ 声明: 尊重作者劳动,转载请保留本段文字
*/ --------------------------------------------------------------------------------------
为什么我会标记SWT错误?我已经把E:/eclipse/plugins/org.eclipse.swt.win32.win32.x86_3.3.1.v3346i.jar 包引入到里面了,为什么还是会标记SWT不识别。 我只是初学者请高手帮忙.非常感谢。
源代码:
package cn1.com;
import java.awt.*;
import org.eclipse.swt.layout.FormLayout;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
public class SimpleForm {
public static void main(String[] args){
Display display=new Display();
Shell shell=new Shell(display);
shell.setText("窗口");
shell.setBounds(200,200,500,350);
FormLayout layout=new FormLayout();
layout.marginHeight=50;
layout.marginWidth=50;
shell.setLayout(layout);
Label helloLabel=new Label(shell,SWT.CENTER);//会在这里标记SWT不能解决
helloLabel.setText("你好,SWT!");
shell.pack();
shell.open();
while(!shell.isDisposed()){
if(!display.readAndDispatch())
display.sleep();
}
display.dispose();
}
}