📄 paintbox.java
字号:
//********************************************************************
// PaintBox.java Author: Lewis and Loftus / Peter DePasquale
//
// Refinement #2
//
// Main driver of the PaintBox application.
//********************************************************************
import PaintFrame;
import java.awt.event.*;
public class PaintBox
{
//-----------------------------------------------------------------
// Creates and displays the primary PaintBox window.
//-----------------------------------------------------------------
public static void main (String[] args)
{
PaintFrame frame = new PaintFrame ();
frame.pack ();
frame.setVisible (true);
frame.setResizable (false);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -