Results 1 to 1 of 1
Thread: Using SWT Button
-
Using SWT Button
SWTButton example is presented below:
Java Code: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"); } }); shell.setDefaultButton(cancel); shell.setLayout(new RowLayout()); shell.pack(); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose();
Similar Threads
-
SWT push button
By Java Tip in forum Java TipReplies: 0Last Post: 12-31-2007, 01:21 PM -
applet button
By kazitula in forum Java AppletsReplies: 2Last Post: 11-14-2007, 07:25 AM -
Need Help With Button Events
By adlb1300 in forum New To JavaReplies: 5Last Post: 11-03-2007, 05:36 AM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks