Default button for dialog: press Enter to activate : Dialog « Swing JFC « Java






Default button for dialog: press Enter to activate

Default button for dialog: press Enter to activate
   

import java.awt.Dimension;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;

import javax.swing.JButton;
import javax.swing.JDialog;
import javax.swing.JPanel;

public class DefaultButton extends JPanel {
  public DefaultButton() {

  }

  public static void main(String[] a) {
    JDialog f = new JDialog();
    f.addWindowListener(new WindowAdapter() {
      public void windowClosing(WindowEvent e) {
        System.exit(0);
      }
    });

    JButton btOK = new JButton("Press Enter to click me, I am the default.");
    btOK.setToolTipText("Save and exit");
    f.getRootPane().setDefaultButton(btOK);

    JPanel p = new JPanel();
    p.add(btOK);
    p.add(new JButton("I am NOT the default."));
    f.getContentPane().add(p);

    f.pack();
    f.setSize(new Dimension(300, 200));

    f.show();

  }
}


           
         
    
    
  








Related examples in the same category

1.Creating and using Dialog BoxesCreating and using Dialog Boxes
2.Dialog boxes and creating your own componentsDialog boxes and creating your own components
3.A frame that can easily support internal frame dialogsA frame that can easily support internal frame dialogs
4.An example of using the JOptionPane with a custom list of options in anAn example of using the JOptionPane with a custom list of options in an
5.See the differences between various types of option panesSee the differences between various types of option panes
6.Vote DialogVote Dialog
7.Create simple about dialogCreate simple about dialog
8.Dialog separatorDialog separator
9.Message dialogMessage dialog
10.Error message dialogError message dialog
11.Information dialog with customized logoInformation dialog with customized logo
12.Input dialog with user-defined logoInput dialog with user-defined logo
13.Confirmation dialogConfirmation dialog
14.Simple dialog for asking a yes no questionSimple dialog for asking a yes no question
15.Class to Prompt the User for an ID and Password
16.Simple Save Dialog demoSimple Save Dialog demo
17.Demonstrate JOptionPaneDemonstrate JOptionPane
18.Create Color Sample PopupCreate Color Sample Popup
19.Simple Input DialogSimple Input Dialog
20.No button dialogNo button dialog
21.Message Dialog demo Message Dialog demo
22.Escape Key close Dialog
23.Dialog can be closed by pressing the escape key
24.Dialog which displays indeterminate progress
25.Dialog with Escape KeyDialog with Escape Key
26.Modal Message Dialog
27.A frame with a menu whose File->Connect action shows a password dialogA frame with a menu whose File->Connect action shows a password dialog
28.A sample modal dialog that displays a message and waits for the user to click the Ok button