javalookandfeel.java

来自「上传压缩包中是一个关于精通Swing书的配套源代码」· Java 代码 · 共 17 行

JAVA
17
字号
import javax.swing.*;

public class JavaLookAndFeel{
	
  public static void main(String[] args){

    try {
	UIManager.setLookAndFeel("javax.swing.plaf.metal.MetalLookAndFeel");
    }  
    catch ( Exception e ) {
	    System.out.println ("Unexpected error. \nProgram Terminated");
	    e.printStackTrace();
	    System.exit(0);
    }
    new MainFrame();
  } // end of main
}//end of class LookAndFeel

⌨️ 快捷键说明

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