defaultbuttonexample.java

来自「java swing 开发代码」· Java 代码 · 共 39 行

JAVA
39
字号
// DefaultButtonExample.java// Example using defaultButton and JRootPane.setDefaultButton()//package	jswing.ch05;import javax.swing.*;import java.awt.*;public class DefaultButtonExample {  public static void main(String[] args) {    // Create some buttons    JButton ok = new JButton("OK");    JButton cancel = new JButton("Cancel");    JPanel buttonPanel = new JPanel();    buttonPanel.add(ok);    buttonPanel.add(cancel);    JLabel msg = new JLabel("Is this OK?", JLabel.CENTER);    // Create a frame, get its root pane, and set the OK button as the    // default. This button is pressed if we press the Enter key while the    // frame has focus.    JFrame f = new JFrame();    f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);    JRootPane root = f.getRootPane();    root.setDefaultButton(ok);    // Layout and Display    Container content = f.getContentPane();    content.setLayout(new BorderLayout());    content.add(msg, BorderLayout.CENTER);    content.add(buttonPanel, BorderLayout.SOUTH);    f.setSize(200,100);    f.setVisible(true);  }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?