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

📄 invokerdemo.java

📁 自定义的窗口组件
💻 JAVA
字号:
/*
 * InvokerDemo.java
 *
 * Created on 2007年6月14日, 下午6:03
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */

package dyno.swing.beans.demo;

import dyno.swing.beans.Invoker;
import java.awt.EventQueue;
import javax.swing.UIManager;

/**
 *
 * @author William Chen
 */
public class InvokerDemo {
    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        try {
            UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
        } catch (Exception e) {}
        EventQueue.invokeLater(new Runnable() {
            public void run() {
                //使用Invoke.show方法动画显示窗口
                Invoker.show(new SampleFrame());
            }
        });
    }
}

⌨️ 快捷键说明

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