📄 helpwindow.java
字号:
import java.awt.*;
import javax.swing.*;
public class HelpWindow implements Chain {
protected Chain nextChain;
protected String mesg;
public HelpWindow() {
mesg ="";
}
//-----------------------------------------
public void addChain(Chain c) {
nextChain = c;
}
public Chain getChain() {
return this;
}
public void sendToChain(Component c) {
sendChain(c);
}
//-----------------------------------------
protected void sendChain (Component c) {
if (nextChain != null) {
nextChain.sendToChain(c);
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -