使用 JSplitPane 将 3 个面板添加到 java 中的一个框架?
Add 3 panels to a frame in java with JSplitPane?
尝试使用 JSplitPane 将我创建的 3 个面板添加到 Java 中的一个框架。已经用 2 个面板试过了,效果很好,但是用 3 个面板仍然没有达到我想要的效果。
读过一些关于制作 2 个 JSplitPanes 并将一个放在另一个中的内容,但这实际上并没有达到我想要的效果。
我的代码显示有3个面板,但是尺寸都不对..应该填写。
我的代码:
frame = new JFrame(); // Create a new frame
frame.setVisible(true); // Makes it visible
frame.setSize(900, 500); // Sets size
frame.setTitle(""); // Sets title
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setLocationRelativeTo(null); // Sets the window on the center of the screen
temp_panel = new JPanel(); // Creates new JPanel
water_panel = new JPanel(); // Creates new JPanel
power_panel = new JPanel(); // Creates new JPanel
temp_panel.setBackground(Color.decode("#2ecc71")); // Sets color
water_panel.setBackground(Color.decode("#3498db")); // Sets color
power_panel.setBackground(Color.decode("#f1c40f")); // Sets color
temp_label = new JLabel("This is Temperature");
water_label = new JLabel("This is Water consumption");
power_label = new JLabel("This is Power consumption");
// Add labels on panel
temp_panel.add(temp_label);
water_panel.add(water_label);
power_panel.add(power_label);
JSplitPane splitPaneLeft = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT);
JSplitPane splitPaneRight = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT);
splitPaneLeft.setLeftComponent( temp_panel );
splitPaneLeft.setRightComponent( water_panel );
splitPaneRight.setLeftComponent( splitPaneLeft );
splitPaneRight.setRightComponent( power_panel );
splitPaneLeft.setEnabled(false);
splitPaneLeft.setDividerSize(0);
splitPaneRight.setEnabled(false);
splitPaneRight.setDividerSize(0);
// put splitPaneRight onto a single panel
JPanel panelSplit = new JPanel();
panelSplit.add( splitPaneRight );
frame.add(panelSplit, BorderLayout.CENTER);
它应该看起来像这样,但只有 3 个面板,有 3 种不同的颜色,而不是 2 个!
希望有人能帮忙
您可以将其中一个面板设为另一个 JSplitPane,遗憾的是没有其他解决方案。
如果您不需要在运行时更改组件的相对大小,请不要使用 JSplitPane。相反,创建一个使用 GridLayout 的容器 JPanel,例如 new GridLayout(1, 0)
用于 1 行和可变数量的列,将三个彩色 JPanel 添加到使用 GridLayout 的 JPanel,然后将其添加到 JFrame。
尝试使用 JSplitPane 将我创建的 3 个面板添加到 Java 中的一个框架。已经用 2 个面板试过了,效果很好,但是用 3 个面板仍然没有达到我想要的效果。
读过一些关于制作 2 个 JSplitPanes 并将一个放在另一个中的内容,但这实际上并没有达到我想要的效果。
我的代码显示有3个面板,但是尺寸都不对..应该填写。
我的代码:
frame = new JFrame(); // Create a new frame
frame.setVisible(true); // Makes it visible
frame.setSize(900, 500); // Sets size
frame.setTitle(""); // Sets title
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setLocationRelativeTo(null); // Sets the window on the center of the screen
temp_panel = new JPanel(); // Creates new JPanel
water_panel = new JPanel(); // Creates new JPanel
power_panel = new JPanel(); // Creates new JPanel
temp_panel.setBackground(Color.decode("#2ecc71")); // Sets color
water_panel.setBackground(Color.decode("#3498db")); // Sets color
power_panel.setBackground(Color.decode("#f1c40f")); // Sets color
temp_label = new JLabel("This is Temperature");
water_label = new JLabel("This is Water consumption");
power_label = new JLabel("This is Power consumption");
// Add labels on panel
temp_panel.add(temp_label);
water_panel.add(water_label);
power_panel.add(power_label);
JSplitPane splitPaneLeft = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT);
JSplitPane splitPaneRight = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT);
splitPaneLeft.setLeftComponent( temp_panel );
splitPaneLeft.setRightComponent( water_panel );
splitPaneRight.setLeftComponent( splitPaneLeft );
splitPaneRight.setRightComponent( power_panel );
splitPaneLeft.setEnabled(false);
splitPaneLeft.setDividerSize(0);
splitPaneRight.setEnabled(false);
splitPaneRight.setDividerSize(0);
// put splitPaneRight onto a single panel
JPanel panelSplit = new JPanel();
panelSplit.add( splitPaneRight );
frame.add(panelSplit, BorderLayout.CENTER);
它应该看起来像这样,但只有 3 个面板,有 3 种不同的颜色,而不是 2 个!
希望有人能帮忙
您可以将其中一个面板设为另一个 JSplitPane,遗憾的是没有其他解决方案。
如果您不需要在运行时更改组件的相对大小,请不要使用 JSplitPane。相反,创建一个使用 GridLayout 的容器 JPanel,例如 new GridLayout(1, 0)
用于 1 行和可变数量的列,将三个彩色 JPanel 添加到使用 GridLayout 的 JPanel,然后将其添加到 JFrame。