⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 testmoreinfopanel.java

📁 oraily的Swing hacks code
💻 JAVA
字号:
import java.awt.*;import javax.swing.*;public class TestMoreInfoPanel {    public static void main (String[] args) {        JOptionPane pane =             new JOptionPane ("The action you have chosen to perform\n is " +                             "not recommended.",                             JOptionPane.WARNING_MESSAGE);        JDialog dialog = pane.createDialog (null, "Warning");        Container grabbedContent = dialog.getContentPane();        JTextArea area =            new JTextArea ("No, seriously dude, you are about to totally "+                            "bake your your computer, if not your entire " +                           "network, if you don't bail right now.  Think " +                           "I'm kidding?  Would I go to such lengths to " +                            "provide such an elaborate warning message if " +                           "I were kidding?  No, no, wait... you know " +                           "what?  Go ahead.  Click OK and blow everything " +                           "to kingdom come.  See if I care.",                           5, 40);        area.setLineWrap (true);        area.setWrapStyleWord (true);        JScrollPane scroller =            new JScrollPane (area,                             ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS,                             ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER);        MoreInfoPanel mip = new MoreInfoPanel (grabbedContent, scroller);        dialog.setContentPane (mip);        dialog.pack();        dialog.setVisible(true);        // dialog blocks on setVisible (JOptionPane makes it modal)        System.exit(0);    }}

⌨️ 快捷键说明

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