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

📄 sdatoolbutton.java

📁 很好的UI界面源码..还有自己的输入法,可以更换风格.可以学习和使用
💻 JAVA
字号:
/* * To change this template, choose Tools | Templates * and open the template in the editor. */package cn.sda.ui;import javax.microedition.lcdui.Image;/** * * @author Administrator */public class SDAToolButton {    private String caption="";    private Image image=null;    private int width=40;    private int height=40;    private int left=0;    private int top=0;    public String getCaption() {        return caption;    }    public void setCaption(String caption) {        this.caption = caption;    }    public Image getImage() {        return image;    }    public void setImage(Image image) {        this.image = image;    }    public int getHeight() {        return height;    }    public void setHeight(int height) {        this.height = height;    }    protected int getWidth() {        return width;    }    protected void setWidth(int width) {        this.width = width;    }    public int getLeft() {        return left;    }    public int getTop() {        return top;    }    protected void setLeft(int left) {        this.left = left;    }    protected void setTop(int top) {        this.top = top;    }    }

⌨️ 快捷键说明

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