Swing JSplitPane问题

发布于 2024-11-30 17:15:37 字数 61 浏览 1 评论 0原文

如何将组件垂直拆分为不同的部分?在 Swing 中可以吗? 我想为每个部分分配不同的 ScrollBar ?

How to Split Component vertically into different parts? Is It possible in Swing?
I want to assign different ScrollBar to each part ?

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

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

发布评论

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

评论(2

烂柯人 2024-12-07 17:15:37

您应该使用 JSplitPane

如果您需要每个, 部分位于不同的滚动条上 - 只需将它们放在不同的滚动条窗格上即可。

JPanel topPanel = new JPanel();
            JScrollPane topScrollPane = new JScrollPane(topPanel);

            JPanel buttomPanel = new JPanel();
            JScrollPane buttomScrollPane = new JScrollPane(buttomPanel);

            JSplitPane splitPane = new JSplitPane(JSplitPane.VERTICAL_SPLIT, topScrollPane, buttomScrollPane);

you should use the JSplitPane

if you need each part to be on a diffrent scroller - just put them on to diffrent scroller pane.

JPanel topPanel = new JPanel();
            JScrollPane topScrollPane = new JScrollPane(topPanel);

            JPanel buttomPanel = new JPanel();
            JScrollPane buttomScrollPane = new JScrollPane(buttomPanel);

            JSplitPane splitPane = new JSplitPane(JSplitPane.VERTICAL_SPLIT, topScrollPane, buttomScrollPane);
○愚か者の日 2024-12-07 17:15:37

尝试使用 JSplitPane。然后将 JScrollPane 放入每一侧。

如果您想要多个拆分,则必须嵌套拆分窗格。
或者使用像这样的多分割窗格: 多分割窗格

Try using JSplitPane. Then put a JScrollPane into each side.

If you want more than one split, you'd have to nest the split panes.
Or use a multi-splitpane like this: MultiSplitPane

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