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

📄 e868. getting and setting a native look and feel.txt

📁 这里面包含了一百多个JAVA源文件
💻 TXT
字号:
By default, Swing uses a cross-platform look and feel called Metal. In most cases, it is more desirable to use a look and feel that is closer to the platform on which the application is being run. This example demonstrates how to retrieve and install the look and feel that most closely resembles the current platform. 
    // Get the native look and feel class name
    String nativeLF = UIManager.getSystemLookAndFeelClassName();
    
    // Install the look and feel
    try {
        UIManager.setLookAndFeel(nativeLF);
    } catch (InstantiationException e) {
    } catch (ClassNotFoundException e) {
    } catch (UnsupportedLookAndFeelException e) {
    } catch (IllegalAccessException e) {
    }

It is also possible to retrieve the cross-platform look and feel: 
    String javaLF = UIManager.getCrossPlatformLookAndFeelClassName();

⌨️ 快捷键说明

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