本文整理汇总了Java中com.haulmont.cuba.gui.components.BoxLayout类的典型用法代码示例。如果您正苦于以下问题:Java BoxLayout类的具体用法?Java BoxLayout怎么用?Java BoxLayout使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
BoxLayout类属于com.haulmont.cuba.gui.components包,在下文中一共展示了BoxLayout类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: loadDropZone
import com.haulmont.cuba.gui.components.BoxLayout; //导入依赖的package包/类
protected void loadDropZone(UploadField uploadField, Element element) {
String dropZoneId = element.attributeValue("dropZone");
if (StringUtils.isNotEmpty(dropZoneId)) {
Component dropZone = context.getFrame().getComponent(dropZoneId);
if (dropZone instanceof BoxLayout) {
uploadField.setDropZone(new UploadField.DropZone((BoxLayout) dropZone));
} else if (dropZone != null) {
log.warn("Unsupported dropZone class {}", dropZone.getClass().getName());
} else {
log.warn("Unable to find dropZone component with id: {}", dropZoneId);
}
}
String dropZonePrompt = element.attributeValue("dropZonePrompt");
if (StringUtils.isNotEmpty(dropZonePrompt)) {
uploadField.setDropZonePrompt(loadResourceString(dropZonePrompt));
}
}
示例2: createComponent
import com.haulmont.cuba.gui.components.BoxLayout; //导入依赖的package包/类
@Override
protected Component createComponent() {
ComponentsFactory componentsFactory = AppBeans.get(ComponentsFactory.class);
BoxLayout layout = componentsFactory.createComponent(VBoxLayout.class);
return layout;
}