我浏览了一会儿,还尝试将多个面板添加到JTabbedPane。

我的问题是:是否可以将同一Jpanel添加到多个TabbedPanes。我尝试过的所有方法似乎都无法正常工作。这就是它的工作方式。

public MainGUI() {

  JMenuBar menuBar = new JMenuBar();
  setJMenuBar(menuBar);

  JTabbedPane tabbedPane = new JTabbedPane(JTabbedPane.TOP);
  getContentPane().add(tabbedPane, BorderLayout.CENTER);

  JEditorPane instructionalEditorPane = new JEditorPane();
  tabbedPane.addTab("Instructional", instructionalEditorPane);

  JPanel codePanel = new JPanel();
  JPanel drawPanel = new JPanel();

  JSplitPane splitPane = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT, codePanel, drawPanel);
  splitPane.setResizeWeight(0.75);

  tabbedPane.addTab("Code Panel", splitPane);

  JEditorPane unifiedInstPane = new JEditorPane();
  JPanel unifiedCodePanel = new JPanel();
  JPanel unifiedDrawPanel = new JPanel();
  JSplitPane unifiedSplitPane = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT, unifiedCodePanel, unifiedDrawPanel);
  unifiedSplitPane.setResizeWeight(0.75);

  JSplitPane unifiedPanel = new JSplitPane(JSplitPane.VERTICAL_SPLIT,unifiedInstPane, unifiedSplitPane);
  unifiedPanel.setResizeWeight(0.40);
  tabbedPane.addTab("Unified Tab", unifiedPanel);
}


我想做的只是将“ instructionalEditorPane”和“ splitPane”添加到多个tabbedPanes中,但是当我这样做时,我会松开原来的“ Individual” tabbedPanes。如果需要的话,我可以用这种方法来做,但是我必须同时写到UnifiedInstPane和InstructionalEditorPane来保持更新。对于嵌入有codePanel和drawPanels的2个splitPanes,我也必须这样做。这将使保持所有面板同步变得更加困难。

有什么建议么?

最佳答案

"Is it possible to add the same Jpanel to multiple TabbedPanes."-不您一次只能将一个组件添加到一个容器中。您的JPanels应该共享模型,但使用唯一的组件。该模型可能是您创建的非GUI类。

例如,这是我的建议的非常简单的呈现:

import java.awt.BorderLayout;
import java.awt.event.ActionEvent;

import javax.swing.*;
import javax.swing.text.BadLocationException;
import javax.swing.text.PlainDocument;

public class MainGui2 extends JPanel {
   private static final int TAB_COUNT = 3;
   private JTabbedPane tabbedPane = new JTabbedPane();
   private PlainDocument doc = new PlainDocument();
   private Action btnAction = new ButtonAction("Button");

   public MainGui2() {
      for (int i = 0; i < TAB_COUNT; i++) {
         tabbedPane.add("Tab " + (i + 1), createPanel(doc, btnAction));
      }
      setLayout(new BorderLayout());
      add(tabbedPane);
   }

   private JPanel createPanel(PlainDocument doc, Action action) {
      JTextArea textArea = new JTextArea(doc);
      textArea.setColumns(40);
      textArea.setRows(20);

      JPanel panel = new JPanel();
      panel.add(new JScrollPane(textArea));
      panel.add(new JButton(action));
      return panel;
   }

   private class ButtonAction extends AbstractAction {
      public ButtonAction(String title) {
         super(title);
      }

      @Override
      public void actionPerformed(ActionEvent evt) {
         try {
            String text = "Button Pressed!\n";
            doc.insertString(doc.getLength(), text, null);
         } catch (BadLocationException e) {
            e.printStackTrace();
         }
      }
   }

   private static void createAndShowGui() {
      JFrame frame = new JFrame("MainGui2");
      frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
      frame.getContentPane().add(new MainGui2());
      frame.pack();
      frame.setLocationRelativeTo(null);
      frame.setVisible(true);
   }

   public static void main(String[] args) {
      SwingUtilities.invokeLater(new Runnable() {
         public void run() {
            createAndShowGui();
         }
      });
   }
}


最好是创建一个正式的模型类,将其注入每个视图(每个选项卡式窗格的各个窗格)。



编辑
您发表评论:


  是的,我可以通过调用实例来解决此问题,但是我又回到了原来的问题,即必须调用每个实例以影响所有面板中的更改。比如说我有一个绘图面板,我需要调用repaint(),那么我必须调用2个不同的实例才能同时更新两个tabbedPanes。有没有办法解决?


是的,解决方案是使用MVC或模型视图控件结构。您的模型拥有整个程序的逻辑,视图是用户看到的,控件在两者之间进行交互。

考虑让模型通知控件或视图其更改,然后刺激重新绘制所有观察者的视图。

09-30 13:52