如何在GWT中最大化根面板大小?
答案 0 :(得分:2)
对于全窗口应用,请在EntryPoint的onModuleLoad()
中使用RootPanel.get()或RootLayoutPanel.get()获取容器。两者都将作为绝对定位的小部件附加到文档正文。
来自邮件样本:
public void onModuleLoad()
{
DockLayoutPanel outer = binder.createAndBindUi(this);
// Get rid of scrollbars, and clear out the window's built-in margin,
// because we want to take advantage of the entire client area.
Window.enableScrolling(false);
Window.setMargin("0px");
RootLayoutPanel root = RootLayoutPanel.get();
root.add(outer);
}
答案 1 :(得分:1)
在Project.html文件中创建具有所需尺寸的div。在你使用RootPanel的onModuoleLoad()方法中使用RootPanel.get('divID'),即(在html文件中创建的div)。因此,您可以拥有指定大小的根面板。
答案 2 :(得分:1)
非问题;根面板是一个绝对面板,涵盖整个浏览器不动产