import org.eclipse.swt.*;
import org.eclipse.swt.events.SelectionAdapter;
import org.eclipse.swt.events.SelectionEvent;
import org.eclipse.swt.widgets.*;
public class testSWT {
public static void main(String[] args) {
Display display = new Display();// 创建一个display对象。
final Shell shell = new Shell(display);// shell是程序的主窗体
shell.setLayout(null); // 设置shell的布局方式
shell.setText("按钮示例"); // 设置主窗体的标题
Button bt1 = new Button(shell, SWT.NULL); // 创建默认按钮
bt1.setText("我是按钮"); // 设置按钮上的文字
bt1.setBounds(10, 10, 75, 30); // 设置按钮显示位置及宽度、高度
bt1.addSelectionListener(new SelectionAdapter() {
public void widgetSelected(SelectionEvent e) {
MessageBox dialog = new MessageBox(shell, SWT.OK
| SWT.ICON_INFORMATION);
dialog.setText("组件选择事件");
dialog.setMessage("你好!");
dialog.open();
}
});
shell.pack(); // 自动调整主窗体的大小
shell.open(); // 打开主窗体
while (!shell.isDisposed()) { // 如果主窗体没有关闭
if (!display.readAndDispatch()) { // 如果display不忙
display.sleep(); // 休眠
}
}
display.dispose(); // 销毁display
}
}
是老师布置的作业吧,自己写