📄 email.java
字号:
package com.viacube.j2me.component;
import mwt.Button;
import mwt.EventListener;
import mwt.Label;
import com.viacube.j2me.model.ImageList;
public class Email extends SubWindow implements EventListener{
Button button;
public Email(int x, int y, int width, int height) {
super(x, y, width, height,true);
add(new Label(2,3,60,10,"Email"));
button = new Button(1, 14, width-2, 15, "New Email ", this, ACTION_SELECT);
button.setIconImage(ImageList.small[1]);
add(button);
// this.setEnabled(false);
}
// public void processEvent(int eventType, Component c, Object[] args) {
//
// }
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -