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

📄 quewebhellopanel.java

📁 CRM源码This file describes some issues that should be implemented in future and how it should be imple
💻 JAVA
字号:
package com.izforge.izpack.panels;

import com.izforge.izpack.installer.InstallerFrame;
import com.izforge.izpack.installer.InstallData;

/**
 * @author dmitry.antonov
 */
public class QueWebHelloPanel extends HelloPanel {

    public QueWebHelloPanel(InstallerFrame parent, InstallData idata) {
        super(parent, idata);
        checkOS();
    }

    private void checkOS() {
        if (System.getProperty("os.name").toUpperCase().contains("VISTA")) {
            emitNotification("Attention! On Windows Vista you must start Installer " +
                    "using 'Run as Administrator' context menu option!");
        }
    }

}

⌨️ 快捷键说明

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