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

📄 e564. iconifying and maximizing a frame.txt

📁 这里面包含了一百多个JAVA源文件
💻 TXT
字号:
This example implements methods to iconify, deiconify, minimize, and maximize a frame. In general, you should not make calls such as Frame.setExtendedState(Frame.ICONIFIED) because this would destroy the maximized state of the frame. Instead, the Frame.ICONIFIED state should be combined with the current maximized state of the frame. 
    // This method iconifies a frame; the maximized bits are not affected.
    public void iconify(Frame frame) {
        int state = frame.getExtendedState();
    
        // Set the iconified bit
        state |= Frame.ICONIFIED;
    
        // Iconify the frame
        frame.setExtendedState(state);
    }
    
    // This method deiconifies a frame; the maximized bits are not affected.
    public void deiconify(Frame frame) {
        int state = frame.getExtendedState();
    
        // Clear the iconified bit
        state &= ~Frame.ICONIFIED;
    
        // Deiconify the frame
        frame.setExtendedState(state);
    }
    
    // This method minimizes a frame; the iconified bit is not affected
    public void minimize(Frame frame) {
        int state = frame.getExtendedState();
    
        // Clear the maximized bits
        state &= ~Frame.MAXIMIZED_BOTH;
    
        // Maximize the frame
        frame.setExtendedState(state);
    }
    
    // This method minimizes a frame; the iconified bit is not affected
    public void maximize(Frame frame) {
        int state = frame.getExtendedState();
    
        // Set the maximized bits
        state |= Frame.MAXIMIZED_BOTH;
    
        // Maximize the frame
        frame.setExtendedState(state);
    }

⌨️ 快捷键说明

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