【发布时间】:2013-11-28 13:31:45
【问题描述】:
我创建了一个 CustomComponent,我想在创建的 WindowTemplate 中添加这个 CustomComponent。我解决了为我的项目的所有窗口创建一个 WindowTemplate,但我仍然无法在模板窗口中添加 CustomComponent。
我正在尝试这个。
/** WindowTemplate for all Window configs app */
public class WindowTemplate extends Window{
public WindowTemplate(String title, CustomComponent cc){
super(title);
setSizeUndefined();
setModal(true);
setClosable(false);
setDraggable(false);
setResizable(false);
setIcon(new ThemeResource("../icons/ibg_icon.png"));
HorizontalLayout hLayout = new HorizontalLayout();
hLayout.addComponent(cc);
setContent(hLayout);
center();
}
}
/** my customcomponent */
public class CadCur extends CustomComponent {
private AbsoluteLayout mainLayout;
private TextField email;
public CadCur() {
buildMainLayout();
setCompositionRoot(mainLayout);
}
@AutoGenerated
private AbsoluteLayout buildMainLayout() {
mainLayout = new AbsoluteLayout();
mainLayout.setImmediate(false);
mainLayout.setWidth("100%");
mainLayout.setHeight("100%");
// top-level component properties
setWidth("100.0%");
setHeight("100.0%");
// email
email = new TextField();
email.setCaption("Email");
email.setImmediate(false);
email.setWidth("50.0%");
email.setHeight("-1px");
email.setRequired(true);
mainLayout.addComponent(email, "top:96.0px;left:43.0px;");
return mainLayout;
}
}
/** a UI class */
public class PrincipalUI extends UI{
@Override
protected void init(VaadinRequest request) {
getCurrent().addWindow(new WindowTemplate("MyWindow", new CadCur());
}
}
如何做到这一点?
谢谢。
【问题讨论】:
标签: java frameworks vaadin