📄 labelpart.java
字号:
package com.cownew.uidesigner.components.label;
import org.eclipse.draw2d.IFigure;
import com.cownew.uidesigner.model.Component;
import com.cownew.uidesigner.parts.ComponentPart;
public class LabelPart extends ComponentPart
{
protected IFigure createFigure()
{
return new LabelFigure();
}
protected void doRefreshFigure(IFigure figure, Component component)
{
LabelFigure lf = (LabelFigure) figure;
Label label = (Label) component;
lf.setText(label.getText());
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -