定义默认Button

来源:互联网 发布:大型网络交换机 编辑:程序博客网 时间:2024/05/16 18:07

import org.eclipse.swt.*;
import org.eclipse.swt.widgets.*;
import org.eclipse.swt.events.*;
import org.eclipse.swt.layout.*;

public class Snippet164 {

public static void main (String [] args) {
 Display display = new Display ();
 Shell shell = new Shell (display);
 
 Label label = new Label (shell, SWT.NONE);
 label.setText ("Enter your name:");
 Text text = new Text (shell, SWT.BORDER);
 text.setLayoutData (new RowData (100, SWT.DEFAULT));
 Button ok = new Button (shell, SWT.PUSH);
 ok.setText ("OK");
 ok.addSelectionListener(new SelectionAdapter() {
  public void widgetSelected(SelectionEvent e) {
   System.out.println("OK");
  }
 });
 Button cancel = new Button (shell, SWT.PUSH);
 cancel.setText ("Cancel");
 cancel.addSelectionListener(new SelectionAdapter() {
  public void widgetSelected(SelectionEvent e) {
   System.out.println("Cancel");
  }
 });
 //定义默认Button
 shell.setDefaultButton (cancel);
 
 shell.setLayout (new RowLayout ());
 shell.pack ();
 shell.open ();
 while (!shell.isDisposed ()) {
  if (!display.readAndDispatch ()) display.sleep ();
 }
 display.dispose ();
}

原创粉丝点击