📄 drawingpanel.java
字号:
//********************************************************************
// DrawingPanel.java Author: Lewis and Loftus / Peter DePasquale
//
// Refinement #1
//
// Represents the primary drawing area for PaintBox.
//********************************************************************
import java.awt.*;
import javax.swing.*;
public class DrawingPanel extends JPanel
{
public static final int DRAWAREA = 400;
//-----------------------------------------------------------------
// Sets up the drawing area.
//-----------------------------------------------------------------
public DrawingPanel ()
{
setBackground (Color.white);
setMinimumSize (new Dimension (DRAWAREA, DRAWAREA));
setPreferredSize (new Dimension (DRAWAREA, DRAWAREA));
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -