GWT:保持 SplitLayoutPanel 的最小尺寸

发布于 2024-12-18 21:40:25 字数 543 浏览 4 评论 0原文

我正在开发一个 GWT 项目,并且正在使用 SplitLayoutPanel。我的页面分为几个可以调整大小的面板。我的问题来自于我无法指定面板的最小高度。

例如,如果我的面板高度为 300px,用户可以将其放大到 500px,但不能更多,并且不能将其缩小到 300px 以下。

我正在使用 uibinder。

编辑:我想做这种事情: http://www.ann0yanc3.com /Ext.layout.HBoxFitSplit/

这是给出代码的链接:http://www.sencha.com/forum/archive/index.php /t-65982.html

如果有人有更简单的解决方案,欢迎他!

谢谢塞布

I'm working on a GWT project and I'm using the SplitLayoutPanel. My page is divided in several panels that I can resize. My problem comes from the fact I can't specify a minimum height for my panels.

By example, if my panel is 300px height, user can enlarge it until 500px but not more and can not reduce it under 300px.

I'm using the uibinder.

Edit : I'd like to do this kind of thing : http://www.ann0yanc3.com/Ext.layout.HBoxFitSplit/

Here's a link where the code's given : http://www.sencha.com/forum/archive/index.php/t-65982.html

If somebody has an easier solution, he's the welcome !

Thanks

Seb

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

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

发布评论

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

评论(1

鹤仙姿 2024-12-25 21:40:26

在SplitLayoutPanel上,有这样的方法:

  public void setWidgetMinSize(Widget child, int minSize)

在您的视图中,您可以使用@UiField来访问您的SplitLayoutPanel和子级,然后您可以调用上面的方法。

On the SplitLayoutPanel, there is this method :

  public void setWidgetMinSize(Widget child, int minSize)

In you view, you can use @UiField to have access to your SplitLayoutPanel and childs, then you can call the method above.

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