本文整理匯總了Java中org.eclipse.swt.SWT.BORDER_DOT屬性的典型用法代碼示例。如果您正苦於以下問題:Java SWT.BORDER_DOT屬性的具體用法?Java SWT.BORDER_DOT怎麽用?Java SWT.BORDER_DOT使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在類org.eclipse.swt.SWT
的用法示例。
在下文中一共展示了SWT.BORDER_DOT屬性的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: createStatsView
private GridComposite createStatsView(GridComposite parent) {
GridComposite c = null;
if (true) {
c = new GridComposite(parent, SWT.BORDER_DOT);
c.initLayout(2, false, GridData.VERTICAL_ALIGN_BEGINNING | GridData.FILL_HORIZONTAL);
c.noMargins();
c.getGridData().horizontalIndent = 0;
c.getGridData().verticalIndent = 0;
// c.debugLayout(SWT.COLOR_BLUE);
} else {
c = parent;
}
for (BookElement s : elems) {
String labelName = getName(s);
Label l = c.newLabel();
l.setText(Translate.getInstance().labelName(labelName) + ": ");
l.setLayoutData(new GridData(GridData.HORIZONTAL_ALIGN_BEGINNING));
l.setFont(FontShop.tableFontBold());
l.setBackground(bgColor);
Label d = c.newLabel();
d.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
d.setFont(FontShop.tableFont());
d.setBackground(bgColor);
d.setData(s);
stats[s.ordinal()] = d;
}
return c;
}