使标题窗口适合内容

发布于 2024-07-29 18:48:34 字数 403 浏览 3 评论 0原文

如果我没有指定 TitleWindow 的宽度和高度值,当我使用 PopUpManager 显示它时,它将调整大小以适合其内容。

但有时内部的某些组件会调整大小,例如异步加载 dataProviderComboBox,或者另一个不可见的组件,我想将其设置为includeInLayouttrue

在那些时刻,我想告诉 TitleWindow 调整自身大小以适应窗口内容。 我尝试调用 invalidateSize()invalidateDisplayList() 但没有成功。

有没有办法做到这一点?

If I don't specify width and height values for a TitleWindow, it will be resized to fit it's contents when I show it using PopUpManager.

But there are moments when some components inside will be resized, like a ComboBox which dataProvider is loaded asynchronously, or another component which was not visible and I'd like to set it's includeInLayout to true.

In those moments, I'd like to tell the TitleWindow to resize itself to fit window contents. I've tried calling invalidateSize() and invalidateDisplayList() with no success.

Is there a way to do this?

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

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

发布评论

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

评论(1

只有影子陪我不离不弃 2024-08-05 18:48:34

尝试调用这两个方法:

titleWindow.invalidateSize();
titleWindow.validateNow(); // or titleWindow.validateSize()

Try to call these two methods:

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