📄 demoapplet.java
字号:
/*
* PSwing Utilities -- Nifty Swing Widgets
* Copyright (C) 2002 Pallas Technology
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* Pallas Technology
* 1170 HOWELL MILL RD NW
* SUITE 306
* ATLANTA GEORGIA 30318
*
* PHONE 404.983.0623
* EMAIL info@pallastechnology.com
*
* www.pallastechnology.com
**************************************************************************
* $Archive: SwingTools$
* $FileName: DemoApplet.java$
* $FileID: 15$
*
* Last change:
* $AuthorName: Rob MacGrogan$
* $Date: 1/28/03 7:42 PM$
* $VerID: 46$
* $Comment: Added GLPL license text.$
**************************************************************************/
package com.pallas.swing.demo;
import java.awt.BorderLayout;
import javax.swing.JApplet;
/**
* Title: $FileName: DemoApplet.java$
* @version $VerNum: 2$
* @author $AuthorName: Rob MacGrogan$<br><br>
*
* $Description: Applet for demo-ing pswing components.$<br>
* $KeyWordsOff: $<br><br>
*
* Applet for demo-ing pswing components. Right now, PComboBox does
* not seem to work properly in this applet.
*/
public class DemoApplet extends JApplet {
public DemoApplet(){
DemoPanel panel = new DemoPanel();
getContentPane().setLayout(new BorderLayout());
getContentPane().add(panel, BorderLayout.CENTER);
setVisible(true);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -