?? demoframe.java
字號(hào):
/*
* 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: DemoFrame.java$
* $FileID: 16$
*
* Last change:
* $AuthorName: Rob MacGrogan$
* $Date: 1/28/03 7:42 PM$
* $VerID: 47$
* $Comment: Added GLPL license text.$
**************************************************************************/
package com.pallas.swing.demo;
import javax.swing.*;
import com.pallas.swing.date.DateComboBox;
import java.awt.*;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.text.SimpleDateFormat;
/**
* Title: $FileName: DemoFrame.java$
* @version $VerNum: 2$
* @author $AuthorName: Rob MacGrogan$<br><br>
*
* $Description: Frame for demo-ing pswing components.$<br>
* $KeyWordsOff: $<br><br>
*/
public class DemoFrame extends JFrame{
public DemoFrame()
throws ClassNotFoundException, InstantiationException,
IllegalAccessException, UnsupportedLookAndFeelException{
DemoPanel panel = new DemoPanel();
getContentPane().setLayout(new BorderLayout());
getContentPane().add(panel, BorderLayout.CENTER);
addWindowListener
(new
WindowAdapter() {
public void windowClosing(WindowEvent e){
System.exit(0);
}
}//end anon class
);
Dimension sd = java.awt.Toolkit.getDefaultToolkit().getScreenSize();
int width = 350;
int height = 150;
int x = (sd.width - width) / 2;
int y = (sd.height - height) /2;
setBounds(x, y, width, height);
//setLookAndFeel();
setVisible(true);
}
private void setLookAndFeel()
throws UnsupportedLookAndFeelException, IllegalAccessException,
InstantiationException, ClassNotFoundException{
String sLookAndFeel = "com.sun.java.swing.plaf.windows.WindowsLookAndFeel";
UIManager.setLookAndFeel(sLookAndFeel);
SwingUtilities.updateComponentTreeUI(this);
}
public static void main(String[] args){
try{
new DemoFrame();
}
catch (Throwable thr){
thr.printStackTrace();
}
}
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -