📄 guipanel.java
字号:
package IrisRecog;/** * GUIPanel.java * * Extends the JPanel swing component to provide specific background color. * * @owner Michael Huffman * @author Team 6: A. Bare, I. Chaugule,M. Huffman, M. Pearson, C. Schell * @version 0.0.1 * * CSC 480 Section 2 * Fall 2005 * 10/1/05 */ import java.awt.*;import javax.swing.*;public class GUIPanel extends JPanel{ /** * Default constructor for creating a new GUI panel. */ public GUIPanel() { super(); this.setBackground(Constants.CLR_DEFAULT_BACKGROUND); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -