JSplitPane 底部的最大尺寸

发布于 2024-12-20 14:50:34 字数 76 浏览 2 评论 0原文

是否可以设置 JSplitPane 底部的最大高度?我不希望它的大小调整太多。

如何做到这一点?

谢谢你,

Is it possible to set the maximum height of the bottom part of a JSplitPane ? I don't want it to be resizable too much.

How to do this ?

Thank you,

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

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

发布评论

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

评论(1

一百个冬季 2024-12-27 14:50:34

JSplitPane 有 2 个方法:.setDividerLocation(intpixels) 和 .setDividerLocation(doublepercents)。代码很简单:

jSplitPane.setDividerLocation(0.0); // set maximum height of the bottom part 

JSplitPane has 2 method: .setDividerLocation(int pixels) and .setDividerLocation(double percents). Code will be easy:

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