1

好吧,我有一些关于使用拆分窗格将框架拆分为两个区域的技巧,但我无法让它显示一些有用的东西。代码如下所示:

public class Whiteboard extends JPanel {

int width = 600;
int sidePanelWidth = 200;
int lineHeight = 120;
int numberOfLines = 5;
JFrame frame = null;
Glyph glyph = null;
//java.awt.Rectangle bounds = new java.awt.Rectangle();
Bounds bounds = null;
JSplitPane splitPane = null;
JPanel tools = null;


public Whiteboard() {
    frame = new JFrame();
    frame.setSize(width + sidePanelWidth, getFullHeight());
    FlowLayout simpleLayout = new FlowLayout();
    frame.setLayout(simpleLayout);

    tools = new JPanel();
    tools.setSize(new Dimension(sidePanelWidth, getFullHeight()));
    this.setSize(width, getFullHeight());

    splitPane = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT, this, tools);
    splitPane.setPreferredSize(new Dimension(width + sidePanelWidth, getFullHeight()));
    splitPane.setOneTouchExpandable(false);
    splitPane.setDividerLocation(150);

    frame.add(splitPane);
    this.setBackground(Color.white);
    java.awt.Rectangle rectBounds = this.getBounds();
    bounds = new Bounds((int)rectBounds.getX(), (int)rectBounds.getY(), (int)(rectBounds.getX() + rectBounds.getWidth()), (int)(rectBounds.getY() + rectBounds.getHeight()));

}

public int getFullHeight() {
    return lineHeight * numberOfLines;
}

我现在改变了这样的代码:

    public static void main(String[] args) {
    int sidePanelWidth = 200;

    JFrame frame = new JFrame();        
    Whiteboard whiteboard = new Whiteboard();         

    JPanel sidePanel = new JPanel();
    sidePanel.setPreferredSize(new Dimension(sidePanelWidth, whiteboard.getFullHeight()));


    JSplitPane splitPane = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT);
    splitPane.add(whiteboard, JSplitPane.LEFT);
    splitPane.add(sidePanel, JSplitPane.RIGHT);

    frame.setLayout(new FlowLayout());
    frame.getContentPane().add(splitPane);


    frame.pack();
    frame.setVisible(true);        
    whiteboard.repaint();
}

以及这个的构造函数:

public Whiteboard() {
    this.setPreferredSize(new Dimension(width, getFullHeight()));
    this.setBackground(Color.red);   

}

现在不知道问题出在哪里,可能是因为它没有调用paintComponent方法。我尝试通过调用 repaint() 来强制它没有帮助,它只是不调用这个组件

编辑:现在看来它毕竟调用了paintComponent方法,但我仍然得到这样的屏幕: 在此处输入图像描述

如您所见,它看起来不太好。那么我当前的主要方法的代码:

public static void main(String[] args) {
    int sidePanelWidth = 200;

    JFrame frame = new JFrame();        
    Whiteboard whiteboard = new Whiteboard();         

    JPanel sidePanel = new JPanel();
    sidePanel.setPreferredSize(new Dimension(sidePanelWidth, whiteboard.getFullHeight()));


    JSplitPane splitPane = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT);
    splitPane.add(whiteboard, JSplitPane.LEFT);
    splitPane.add(sidePanel, JSplitPane.RIGHT);

    frame.setLayout(new FlowLayout());
    frame.getContentPane().add(splitPane);

    frame.pack();
    frame.setVisible(true);        
    whiteboard.repaint();
}

知道如何更改它以解决问题吗?我需要发布其他方法吗?

4

2 回答 2

4

实际上不应该JFrame从 a 的构造函数中创建 a 。JPanel

这是我创建的一个示例:

截屏

import java.awt.Container;
import java.awt.Dimension;
import javax.swing.*;

public class JavaApplication100 {

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

            @Override
            public void run() {
                new JavaApplication100().createAndShowUI();
            }
        });
    }

    private void createAndShowUI() {

        JFrame frame = new JFrame("Test");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

        initComponents(frame.getContentPane());

        frame.pack();
        frame.setVisible(true);
    }

    private void initComponents(Container contentPane) {
        JPanel mainPanel = new JPanel();

        //create our 2 seperate panels (could be custom ones)
        JPanel leftPanel = new JPanel();
        JPanel rightPanel = new JPanel();

        //add labels for viewing
        leftPanel.add(new JLabel("LEFT"));
        rightPanel.add(new JLabel("RIGHT"));

        //just so you can see em or they would be small
        leftPanel.setPreferredSize(new Dimension(300, 300));
        rightPanel.setPreferredSize(new Dimension(300, 300));

        JSplitPane jsp = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT);

        //add panels to split pane
        jsp.add(rightPanel, JSplitPane.RIGHT);
        jsp.add(leftPanel, JSplitPane.LEFT);

        mainPanel.add(jsp);//add splitpane to mainpanel
        contentPane.add(mainPanel);

    }
}

编辑/更新:

根据您的评论,如果您想paintComponent(Graphics g)在您WhiteBoard的扩展中为背景覆盖着色,JPanel如下所示:

public class WhiteBoard extends JPanel {
@Override
public void paintComponent(Graphics g) {
super.paintComponent(g);

Graphics2D g2 = (Graphics2D) g;
g2.setColor(Color.red);
g2.fillRect(0, 0, getWidth(), getHeight());
}
}
于 2012-09-18T18:31:37.277 回答
3

您可以改用JSplitPane.setDividerLocation(int) ...

public class TestSplitPane extends JFrame {

    public TestSplitPane() throws HeadlessException {
        setSize(600, 600);
        setDefaultCloseOperation(EXIT_ON_CLOSE);
        setLocationRelativeTo(null);

        setLayout(new BorderLayout());

        JSplitPane splitPane = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT);

        splitPane.setLeftComponent(new JLabel("I'm on the left"));
        splitPane.setRightComponent(new JLabel("I'm on the right"));

        add(splitPane);

        splitPane.setDividerLocation(200);
    }

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        EventQueue.invokeLater(new Runnable() {

            @Override
            public void run() {
                try {
//                    UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
                    for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
                        if ("Nimbus".equals(info.getName())) {
                            javax.swing.UIManager.setLookAndFeel(info.getClassName());
                            break;
                        }
                    }
                } catch (ClassNotFoundException ex) {
                } catch (InstantiationException ex) {
                } catch (IllegalAccessException ex) {
                } catch (UnsupportedLookAndFeelException ex) {
                }

                new TestSplitPane().setVisible(true);
            }
        });
    }
}

在此处输入图像描述

于 2012-09-18T21:09:03.357 回答