📄 aboutform.java
字号:
/* * aboutForm.java * * Created on January 18, 2004, 3:54 PM */import javax.microedition.lcdui.*;/** * * @author kobi-kr * @version */public class AboutForm extends Form implements CommandListener { private TestMidletMIDlet parent; private Command mainMenu = new Command("Back", Command.BACK, 1); public AboutForm(TestMidletMIDlet parent) { super("About Form"); addCommand(mainMenu); setCommandListener(this); this.append("Pocket Basketball\nBy Kobi Krasnoff\n\n"); this.append("All rights reserved."); this.parent = parent; } public void commandAction(Command c, Displayable d) { if (c == mainMenu) { parent.setCurrent("MainMenu2"); } }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -