如何最大化 GWT 中的根面板大小?
如何最大化 GWT 中的根面板大小?
How can I maximize the root panel size in GWT?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何最大化 GWT 中的根面板大小?
How can I maximize the root panel size in GWT?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
对于全窗口应用程序,请使用 RootPanel.get() 或 RootLayoutPanel.get()。两者都将作为绝对定位的小部件附加到文档正文。
来自邮件样本:
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:
在 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.
非问题;根面板是一个绝对面板,覆盖了整个浏览器区域
Non-issue; the root panel is an absolute panel, and covers the entire browser real-estate