4

所以,我正在制作一种文本编辑器,我需要一个用于垂直导航的 JScrollPane。但我无法让它工作。

我已经阅读了谷歌搜索结果前十页上的每一个该死的教程,但我无法让它工作。

假设我有 JFrame(尺寸 1000x800)。我想在其中放置一个 JPanel (1000x2000),使其与 JFrame 水平对齐。我想在 JPanel 的右侧粘贴一个简单的滚动条,这样我就可以看到它的其余部分。

我减小了尺寸,我将 JPanel 添加到 JScrollBar,反之亦然,将其中一个添加到 JFrame,两者都没有,但什么都没有。

所以,在这一点上,我不介意几行完成的代码......

编辑:好的,这是代码......

mWindow = new JFrame(lang.getString("title"));
mWindow.setSize(1000, 800);
mWindow.setLocationRelativeTo(null);
mWindow.setResizable(false);
mWindow.setLayout(null);
mWindow.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

mWindow.setVisible(true);

workspace = new JPanel();
workspace.setBounds(0,0, 1000, 1203);
workspace.setBackground(Color.RED);

scroll = new JScrollPane(workspace, JScrollPane.VERTICAL_SCROLLBAR_ALWAYS, JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);
scroll.setBounds(0, 20, 600, 600);
//scroll.setLayout(null);
mWindow.getContentPane().add(scroll);
mWindow.repaint();
mWindow.validate();

显示 JPanel 的一部分(600X600,(JScrollPane 大小)),并显示滚动条,但不可滚动

4

4 回答 4

6

所以,我做了这个非常快速的测试,它对我来说很好......

public class TestPane extends JPanel {

    public TestPane() {

        setBorder(new LineBorder(Color.RED));
        // This is for demonstration purposes only
        // One should always rely on the layout manager
        // to define this value
        // Thank kleopatra 
        setPreferredSize(new Dimension(1000, 1000));

    }

    @Override
    protected void paintComponent(Graphics g) {

        super.paintComponent(g);

        FontMetrics fm = g.getFontMetrics();

        Dimension size = getPreferredSize();
        String text = "Pref: " + size.width + "x" + size.height;
        g.drawString(text, 0, fm.getAscent());

        size = getSize();
        text = "Size: " + size.width + "x" + size.height;
        g.drawString(text, 0, fm.getHeight() + fm.getAscent());

    }

}

和测试框架

public class TestFrame {

    public static void main(String args[]) {

        JFrame frame = new JFrame();
        frame.setLayout(new BorderLayout());

        JScrollPane scroll = new JScrollPane(new TestPane());

        frame.add(scroll);

        frame.setSize(500, 500);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setLocationRelativeTo(null);
        frame.setVisible(true);

    }

}

产生这个:

滚开

在旁注中,我不知道为什么人们坚持使用空布局,它们只会造成更多的麻烦和心痛,而不是它们的价值。花点时间找一些简单的布局管理器。我讨厌 VB 有很多原因,但布局管理是我的首要任务,恕我直言

于 2012-08-18T00:32:30.647 回答
3

申请试试

setPreferredSize(new Dimension());

面板上的方法,而不是 setSize() 方法。

像这样:

import java.awt.Dimension;

import javax.swing.*;
public class Example extends JFrame{

public static void main(String[] args) {
    Example ex = new Example();
    JPanel panel = new JPanel();
    JScrollPane sc = new JScrollPane(panel);
    panel.setPreferredSize(new Dimension(800,600));
    ex.getContentPane().add(sc);
    ex.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    ex.pack();
    ex.setVisible(true);
}

}
于 2012-08-17T23:57:39.453 回答
1

我会做:

  1. 边框布局,使滚动窗格适合框架内容窗格的所有空间;
  2. 最后一个包用于布局;
  3. 最后设置可见;
  4. setPreferredSize 如果没有任何帮助。

    mWindow = new JFrame(lang.getString("title"));
    mWindow.setSize(1000, 800);
    mWindow.setLocationRelativeTo(null);
    mWindow.setResizable(false);
    mWindow.setLayout(new BorderLayout());
    mWindow.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    
    workspace = new JPanel();
    workspace.setBounds(0,0, 1000, 1203);
    workspace.setPreferredSize(new Dimension(1000,1203));
    
    workspace.setBackground(Color.RED);
    
    scroll = new JScrollPane(workspace, JScrollPane.VERTICAL_SCROLLBAR_ALWAYS, JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);
    scroll.setBounds(0, 20, 600, 600);
    mWindow.getContentPane().add(scroll, BorderLayout.CENTER);
    mWindow.pack();
    mWindow.setVisible(true);
    
于 2012-08-18T00:37:08.157 回答
0

为什么不尝试这样的事情并从创建框架的类中调用它。

public JPanel createLPanelWithScroller() {

      Dimension outter_dem = new Dimension(600, 600); //width,height
      Dimension inner_panel_dem = new Dimension(1000, 1203);  
      Dimension scroll_dem = new Dimension(600, 600); 

      JPanel outter_panel = new JPanel(new FlowLayout());
 outter_panel.setPreferredSize(outter_panel_dem);       

 JPanel inner_panel = new JPanel(new FlowLayout());
 inner_panel.setPreferredSize(inner_panel_dem);

 JScrollPane scroller = new JScrollPane(list_panel); 
 scroller.setHorizontalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
      scroller.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);
 scroller.setPreferredSize(scroll_dem);

 outer_panel.add(list_scroller);

 return outer_panel;
}
于 2013-04-12T20:31:47.327 回答