cdelookandfeel.java
来自「上传压缩包中是一个关于精通Swing书的配套源代码」· Java 代码 · 共 17 行
JAVA
17 行
import javax.swing.*;
public class CDELookAndFeel{
public static void main(String[] args){
try {
UIManager.setLookAndFeel("com.sun.java.swing.plaf.motif.MotifLookAndFeel");
}
catch ( Exception e ) {
System.out.println ("Unexpected error. \nProgram Terminated");
e.printStackTrace();
System.exit(0);
}
new MainFrame();
} // end of main
}//end of class CDELookAndFeel
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?