本文整理汇总了Java中org.eclipse.swt.custom.CLabel.setTopMargin方法的典型用法代码示例。如果您正苦于以下问题:Java CLabel.setTopMargin方法的具体用法?Java CLabel.setTopMargin怎么用?Java CLabel.setTopMargin使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.eclipse.swt.custom.CLabel
的用法示例。
在下文中一共展示了CLabel.setTopMargin方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: createUI
import org.eclipse.swt.custom.CLabel; //导入方法依赖的package包/类
public void createUI(Composite cParent) {
Label spcStatus = new Label(cParent, SWT.SEPARATOR | SWT.HORIZONTAL | SWT.SHADOW_IN);
spcStatus.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false, 1, 1));
Composite pStatus = new Composite(cParent, SWT.NO_FOCUS);
pStatus.setBackground(SWTResourceManager.getColor(SWT.COLOR_WIDGET_BACKGROUND));
GridLayout gl_pStatus = new GridLayout(4, false);
gl_pStatus.marginTop = 1;
gl_pStatus.marginBottom = 2;
gl_pStatus.marginHeight = 0;
gl_pStatus.verticalSpacing = 0;
pStatus.setLayout(gl_pStatus);
pStatus.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false, 1, 1));
lStatus = new CLabel(pStatus, SWT.NONE);
lStatus.setLeftMargin(3);
lStatus.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false, 1, 1));
lStatus.setRightMargin(5);
lStatus.setTopMargin(2);
lStatus.setBottomMargin(1);
setPortStatus("Port closed", false);
createLeds(pStatus);
}
示例2: createLed
import org.eclipse.swt.custom.CLabel; //导入方法依赖的package包/类
protected CLabel createLed(Composite parent, Serial.Pin led) {
CLabel element = new CLabel(parent, SWT.NONE);
element.setTopMargin(1);
element.setRightMargin(0);
element.setBottomMargin(1);
element.setLeftMargin(0);
element.setText(led.name());
element.setImage(Icons.state(State.OFF));
leds.put(led, element);
return element;
}