不断增长的 GWT Widget

发布于 2024-12-17 05:19:30 字数 153 浏览 0 评论 0原文

我需要创建一个 GWT 自定义小部件。该小部件将包含一个面板,并且该小部件的高度必须根据面板中的文本量

编辑:

例如,假设一个小部件将包含论坛帖子。所发生的情况是,小部件内有一个面板用于保存论坛帖子。文字文字越多,面板就越大??

有什么想法吗?

I need to create a GWT Custom Widget. This widget will contain a panel and that widget must grow in height based on the amount of text in the panel

Edit:

for e.g. let's say a widget will hold a forum post. What happens is that there is a panel inside the widget that hold the forum post. The more text text, the greater the panel??

Any idea??

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

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

发布评论

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

评论(1

挽清梦 2024-12-24 05:19:30

如果您将 Label 放入 FlowPanel 中,整个面板将自行调整大小以包含您放入 Label 中的任何文本。只要您不设置明确的大小,大多数 GWT 小部件都会执行此操作。

一旦您开始自己设置尺寸(例如“高度:100px”),那么您就必须开始自己重新计算尺寸。所以...不要自己设置尺寸! :)

If you put a Label in a FlowPanel, the whole thing will size itself to contain whatever text you put in the Label. Most GWT widgets will do that as long as you don't set an explicit size.

Once you start setting the size (e.g. "height: 100px") yourself, then you have to start re-calculating the size yourself. So... don't set the size yourself! :)

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