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

📄 componentframe.java

📁 实例大全
💻 JAVA
字号:
/* * @(#)ComponentFrame.java	1.6 99/12/09 * * Copyright 1997-1999 Sun Microsystems, Inc. All Rights Reserved. *  * This software is the proprietary information of Sun Microsystems, Inc.   * Use is subject to license terms. *  */import java.awt.*;import java.awt.event.*;import javax.swing.JFrame;import javax.swing.WindowConstants;/** * this Frame provides a utility class for displaying a single * Component in a Frame. * * @version	1.6, 99/12/09 * @author	Christopher Cotton */public class ComponentFrame extends JFrame {        /**     * creates the frame     * @param what	the component to display     */    public ComponentFrame(Component what) {	this(what, "Component Frame");    }    /**     * creates the frame with the given name     * @param what	the component to display     * @param name	the name of the Frame     */    public ComponentFrame(Component what, String name) {	super(name);	// make sure that we close and dispose ourselves when needed	setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);	// default size of the frame	setSize(700,600);	// we want to display just the component in the entire frame	if (what != null) {	    getContentPane().add("Center", what);	}    }}

⌨️ 快捷键说明

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