drawingpanel.java
来自「一个简单的JAVA绘图程序」· Java 代码 · 共 26 行
JAVA
26 行
//********************************************************************
// 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 + =
减小字号Ctrl + -
显示快捷键?