⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 aboutbox.java

📁 手机RPG游戏
💻 JAVA
字号:
package window;
import javax.microedition.lcdui.*;
import javax.microedition.media.*;

import main.*;
import window.*;

public class AboutBox extends TextBox implements CommandListener{

  Command ok;
  public AboutBox(String title, String text, int maxSize, int constraints) {
    super(title, text, maxSize, constraints);

    ok=new Command("确定",Command.OK,1);
    this.addCommand(ok);
    this.setCommandListener(this);
  }

  public void commandAction(Command command, Displayable d) {
    if(command==ok){
          MyControl.showMenu();
    }
  }
  public   void aboutinit(){
//  aboutbox.
  }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -