?? sdastatuspanel.java
字號(hào):
/* * To change this template, choose Tools | Templates * and open the template in the editor. */package cn.sda.ui;/** * * @author Administrator */public class SDAStatusPanel { private int highLightColor=SDAConsts.clWhite; private int shadowColor=SDAConsts.clBtnShadow; private byte statusBevel=SDAConsts.pbNone; private String text=""; private int alignType=SDAConsts.alignLeft; private int width=50; private SDAStatusBar parentBar=null; public int getAlignType() { return alignType; } public void setAlignType(int alignType) { this.alignType = alignType; } public byte getStatusBevel() { return statusBevel; } public void setStatusBevel(byte statusBevel) { this.statusBevel = statusBevel; doRepaint(); } public String getText() { return text; } public void setText(String text) { this.text = text; doRepaint(); } public int getWidth() { return width; } public void setWidth(int width) { this.width = width; doRepaint(); } public int getHighLightColor() { return highLightColor; } public void setHighLightColor(int highLightColor) { this.highLightColor = highLightColor; doRepaint(); } public int getShadowColor() { return shadowColor; } public void setShadowColor(int shadowColor) { this.shadowColor = shadowColor; doRepaint(); } protected void setParentBar(SDAStatusBar parentBar) { this.parentBar = parentBar; } private void doRepaint(){ if(this.parentBar!=null){ parentBar.repaintControl(); } }}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -