我正在尝试构建一个GWT GUI,但我不确定它是否可行。基本上,我需要能够堆叠三个布局/面板,一个在另一个上面,如下所示:
Bottom Layout: Panel that fills the whole screen (will actually contain SVG stuff).
Middle Layout: DockLayoutPanel with tools docked around the edges, also full screen.
Top Layout: Transparent panel, again filling the whole screen.
是否可以像这样堆叠面板?我假设我可以使用AbsolutePanel以某种方式做到这一点,但我希望有一个更好的解决方案。 谢谢, 乔恩
答案 0 :(得分:2)
因为您想要内部DockLayoutPanel
,请尝试使用LayoutPanel
(或RootLayoutPanel
),然后只需按顺序添加小部件,默认情况下为{{1}的子级}} fills its parent。