我想要这样的:
如何使其在思想上正确?
I want some like this:
How make it ideologically correct?
您的要求似乎是 BorderLayout 的相对简单的使用。
下面的代码片段假设面板被添加到 JFrame 中。因此 getContentPane() 调用。
javax.swing.JPanel jPanel1 = new javax.swing.JPanel(); javax.swing.JPanel jPanel2 = new javax.swing.JPanel(); jPanel1.setMaximumSize(new java.awt.Dimension(60, 32767)); jPanel1.setMinimumSize(new java.awt.Dimension(60, 100)); jPanel1.setPreferredSize(new java.awt.Dimension(60, 300)); getContentPane().add(jPanel1, java.awt.BorderLayout.WEST); getContentPane().add(jPanel2, java.awt.BorderLayout.EAST);
将 jPanel1 的最大、最小和首选宽度指定为 60 px。将 JPanel2 保留为“浮动”。
如果需要分隔窗格,请添加固定宽度(例如 5 px)的第三个窗格
getContentPane().add(jPanel3, java.awt.BorderLayout.CENTER);
Your requirement seems to be a relatively simple use of BorderLayout.
The code snippet below assumes the panel are being added to a JFrame. Hence the getContentPane() calls.
Specify the maximum, minimum and preferred width of jPanel1 to be 60 px. Leave JPanel2 to "float".
If separation of the panes is required add a third pane of fixed width (say 5 px)
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(1)
您的要求似乎是 BorderLayout 的相对简单的使用。
下面的代码片段假设面板被添加到 JFrame 中。因此 getContentPane() 调用。
将 jPanel1 的最大、最小和首选宽度指定为 60 px。将 JPanel2 保留为“浮动”。
如果需要分隔窗格,请添加固定宽度(例如 5 px)的第三个窗格
Your requirement seems to be a relatively simple use of BorderLayout.
The code snippet below assumes the panel are being added to a JFrame. Hence the getContentPane() calls.
Specify the maximum, minimum and preferred width of jPanel1 to be 60 px. Leave JPanel2 to "float".
If separation of the panes is required add a third pane of fixed width (say 5 px)