在 Java Swing GUI 中使用垂直分割器?
我正在开发一个java桌面应用程序。我在设计一件事时有一些疑问或问题,如下所示:
我想将主框架
JFrame mainFrame = new JFrame("Demo");
分成两部分(垂直划分),以便用户可以通过将两个部分的公共边界向左或向左拖动来更改其大小正确的是,当一个部分的宽度增加时,另一部分的宽度减小,因此 mainFrame 的大小保持不变。
我正在通过 Netbeans IDE 设计此 GUI,因此无需向我建议代码。您可以简单地从调色板窗口向我建议“项目”,我可以将其拖放到我的 mainFrame 中。
I am developing a java desktop application. I have some doubts or problems in designing one thing which is as follows:
I want to break the the main frame
JFrame mainFrame = new JFrame("Demo");
into two parts (divided vertically) so that user can change their size by dragging the common boundary of both the parts to either left or right so that when the width of one part increases, the width of other part decreases so the size of the mainFrame remains same.
I am designing this GUI through Netbeans IDE so it is not necessary to suggest me the code. You can simply suggest me the "item" from the palette window that I can drag and drop to my mainFrame.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您想要一个
JSplitPane
:You want a
JSplitPane
: