如何最大化 GWT 中的根面板大小?

发布于 2024-10-21 12:49:09 字数 25 浏览 2 评论 0原文

如何最大化 GWT 中的根面板大小?

How can I maximize the root panel size in GWT?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

神爱温柔 2024-10-28 12:49:09

对于全窗口应用程序,请使用 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);
}

For a full-window app, get your container with RootPanel.get() or RootLayoutPanel.get() in the EntryPoint's onModuleLoad(). Both will be attached to the document body as an absolutely positioned widget.

From the Mail sample:

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);
}
つ低調成傷 2024-10-28 12:49:09

在 Project.html 文件中创建一个具有所需尺寸的 div。比在使用 RootPanel 的 onModuoleLoad() 方法中使用 RootPanel.get('divID') 即(在 html 文件中创建的 div)。这样你就可以拥有指定大小的根面板。

Create a div in your Project.html file with required dimensions. Than in your onModuoleLoad() method where you are using RootPanel use RootPanel.get('divID') i.e. (div created in html file). And thus you can have root panel of specified size.

小苏打饼 2024-10-28 12:49:09

非问题;根面板是一个绝对面板,覆盖了整个浏览器区域

Non-issue; the root panel is an absolute panel, and covers the entire browser real-estate

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文