📄 ergocanvas.java
字号:
package ergo.ui;
// $Id: ErgoCanvas.java,v 1.2 1999/08/13 01:20:07 sigue Exp $
/*
* Copyright (C) 1999 Carl L. Gay and Antranig M. Basman.
* See the file copyright.txt, distributed with this software,
* for further information.
*/
import java.awt.Canvas;
public class ErgoCanvas extends Canvas {
protected boolean needsRedisplay = true;
protected int width;
protected int height;
public void refresh() {
needsRedisplay = true;
repaint();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -