将JPanel和JScrollingPane添加到JFrame

时间:2016-08-04 15:32:41

标签: java swing jframe jpanel jscrollpane

我目前正在为数据库系统的GUI窗口工作。我想在同一个JFrame中同时拥有一个JScrollPane和一个JPanel。我基本上想要一个用户可以滚动数据的部分,然后是底部的一个部分,它不滚动哪里有按钮来改变排序。目前,当我尝试打开窗口时,仅显示JPanel。我知道JScrollPane本身是有效的,因为如果我注释掉添加了JPanel的部分,它就会像它应该的那样工作。

public class ViewWindow
{
   DataContainer data;
   JFrame viewWin;
   DaysUntil days;
   JPanel contentPane;
   JScrollPane scroll;
   EmptyBorder border;
   DateFormat dateformat;
   Integer[] map;
   SortTest sor;
   JButton dayUntil, index, name;

   public ViewWindow(DataContainer da)
   {
       data= da;
       days= new DaysUntil();
       sor= new SortTest(data,days);
       viewWin= createWindow();
       JScrollPane main= createMainPanel();
       JPanel sortPane= createSortPanel();
       viewWin.getContentPane().add(main);
       viewWin.getContentPane().add(sortPane);
       viewWin.pack();
       viewWin.setVisible(false);

  }

以下是createMainPanel()

代码的一部分
public JScrollPane createMainPanel()
   {
      DateFormat dateformat =new SimpleDateFormat("MM/dd/yy");
      border = new EmptyBorder(10,20,10,20);
      JPanel mainPane= new JPanel();
      mainPane.setLayout(new BoxLayout(mainPane, BoxLayout.Y_AXIS));

      JPanel titlePane= new JPanel();
      titlePane.setLayout(new BoxLayout(titlePane, BoxLayout.Y_AXIS));

      contentPane= new JPanel();
      contentPane.setLayout(new BoxLayout(contentPane, BoxLayout.X_AXIS));

      JPanel indexPane= new JPanel();
         indexPane.setLayout(new BoxLayout(indexPane, BoxLayout.Y_AXIS));
         JLabel indexTitle= new JLabel("index");
         indexTitle.setBorder(border);
         indexPane.add(indexTitle);

       .....
       mainPane.add(titlePane);
  mainPane.add(contentPane);
  JScrollPane mainn= new JScrollPane(mainPane, JScrollPane.VERTICAL_SCROLLBAR_ALWAYS, JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED);
  return mainn;
 }

JPanel如下:

public JPanel createSortPanel()
   {
      JPanel sortPanel = new JPanel();
      sortPanel.setLayout(new BoxLayout(sortPanel, BoxLayout.X_AXIS));

      dayUntil= new JButton("Sort by Due Date");
      index= new JButton("Sort by index");
      name= new JButton("Sort by name");
      sortPanel.add(dayUntil);
      sortPanel.add(index);
      sortPanel.add(name);
      return sortPanel;
   }

如果有人能提供帮助,我们将不胜感激。

1 个答案:

答案 0 :(得分:2)

JFame的默认布局是支持此要求的BorderLayout:

基本逻辑是:

frame.add(scrollPane, BorderLayout.CENTER)
frame.add(anotherPanel, BorderLayout.PAGE_END);

阅读Layout Manager上的Swing教程中的部分,了解工作示例,以便更好地帮助您了解BorderLayout的工作原理。