3

我正在自学Java。尝试创建一个带有线条的框架。它看起来很基本,但我看不到这条线。代码编译,我似乎无法理解为什么我看不到这条线。我在框架中看到了其他组件。我正在使用 2 个 java 文件。一个文件是容器文件,另一个文件有画线代码。它们是包 a1 的一部分。这是我的代码(请帮助):

容器文件:

package a1;
import javax.swing.*;
import java.awt.*;

public class gameContainer {

    public static void addComponentsToPane(Container pane) {
        pane.setLayout(null);

        //add button to the pane
        JButton b3 = new JButton("B1");
        pane.add(b3);

        //add line to the pane
        drawingLine line1 = new drawingLine();
        pane.add(line1);

        //size and position all relatively          
        Insets insets = pane.getInsets();
        Dimension size;
        size = b3.getPreferredSize();        
        b3.setBounds(350+insets.left,15+insets.top,size.width+50,size.height+20);
        size = line1.getPreferredSize();
        line1.setBounds(350+insets.left,75+insets.top,size.width+50,size.height+20);    

    }

    private static void createAndShowGUI() {
        int l = 200, w = 80;

        //Create and set up the window.
        JFrame frame = new JFrame("Frame");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

        //Set up content pane
        addComponentsToPane(frame.getContentPane());

        //add menu bar
        JMenuBar menuBar = new JMenuBar();
        JMenu menu = new JMenu("Menu");
        menu.add(new JMenuItem("Do nothing"));
        menuBar.add(menu);
        frame.setJMenuBar(menuBar);

        // size and display root pane/window
        Insets insets = frame.getInsets();
        frame.setSize(500+insets.left+insets.right,300+insets.top+insets.bottom);
        frame.setLocation(w,l);
        frame.setVisible(true);
    }


    public static void main(String[] args) {
        //Schedule a job for the event-dispatching thread:
        //creating and showing this application's GUI.
        javax.swing.SwingUtilities.invokeLater(new Runnable() {
        public void run() {
            createAndShowGUI();
        }
        });
    }

}

画线文件:

package a1;
import javax.swing.*;
import java.awt.geom.Line2D;
import java.awt.Graphics2D;
import java.awt.Graphics;

public class drawingLine extends JPanel{

    public void paintComponent(Graphics g) {
        super.paintComponent(g);
        Graphics2D g2d = (Graphics2D) g;
        Line2D line = new Line2D.Double(200, 300, 1000, 1000);
        //g2d.setColor(Color.black);
        g2d.draw(line);
        //g.drawLine(200, 300, 1000, 1000);
        //g.setColor(color.BLACK);

    }

}

为什么我看不到线?

4

2 回答 2

7

您的主要问题是您使用null/Absolute布局。

你应该在这里阅读:

1)您应该使用适当的LayoutManager(或将多个 s 嵌套在一起LayoutManager)和/或覆盖getPreferredSize()JComponent返回适合图纸的正确尺寸。

2)在设置可见之前不要调用setSizeJFrame不是调用(记住以上)pack()JFrame

3)无需通过as添加到contentPane,已经转发到contentPane。getContentPane().add(..)add(..) setLayout(..)remove(..)

4)注意类名,遵守java约定类名以大写字母开头,之后的每个新单词的第一个字母都应该大写,即gameContainer应该是GameContainerdrawingLine应该是DrawingLine

这是您实现了上述修复的代码(不是最好的布局,但它只是一个示例):

在此处输入图像描述

import java.awt.BorderLayout;
import java.awt.Dimension;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.geom.Line2D;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JMenu;
import javax.swing.JMenuBar;
import javax.swing.JMenuItem;
import javax.swing.JPanel;


public class GameContainer {

    public static void addComponentsToPane(JFrame frame) {

        JPanel buttonPanel=new JPanel();//create panel to hold button
        //add button to the pane
        JButton b3 = new JButton("B1");
        buttonPanel.add(b3);
        frame.add(buttonPanel, BorderLayout.EAST);//use contentPane default BorderLayout

        //add line to the pane
        DrawingLine line1 = new DrawingLine();
        frame.add(line1);

    }

    private static void createAndShowGUI() {

        //Create and set up the window.
        JFrame frame = new JFrame("Frame");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

        //Set up content pane
        addComponentsToPane(frame);

        //add menu bar
        JMenuBar menuBar = new JMenuBar();
        JMenu menu = new JMenu("Menu");
        menu.add(new JMenuItem("Do nothing"));
        menuBar.add(menu);
        frame.setJMenuBar(menuBar);

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

    public static void main(String[] args) {
        //Schedule a job for the event-dispatching thread:
        //creating and showing this application's GUI.
        javax.swing.SwingUtilities.invokeLater(new Runnable() {
            public void run() {
                createAndShowGUI();
            }
        });
    }
}
class DrawingLine extends JPanel {

    @Override
    public void paintComponent(Graphics g) {
        super.paintComponent(g);
        Graphics2D g2d = (Graphics2D) g;
        Line2D line = new Line2D.Double(10, 10, 100, 100);
        g2d.draw(line);

    }

    @Override
    public Dimension getPreferredSize() {
        return new Dimension(300, 300);
    }
}
于 2013-01-17T00:04:29.713 回答
2

David Kroukamp 展示了正确的(更好地说,更容易,更不容易出错)的方法。至于你原来的问题,修改原来的代码是这样的:

line1.setBounds(350+insets.left,75+insets.top,size.width+50,size.height+20);    
line1.setBorder(BorderFactory.createEtchedBorder()); // add this line

您的线从点 200,300 开始,但您正在绘制它的面板的宽度为 50+10,高度为 20+10 - 至少在我的计算机上 - 这意味着该线在drawingLine面板之外,这就是它没有的原因不被吸引。要验证是否像这样修改原始行中的行drawingLine.paintComponent

Line2D line = new Line2D.Double(0, 0, 1000, 1000);

您将看到以下结果:

在此处输入图像描述

原始代码中的这一行:

pane.setLayout(null);

很清楚 - 您没有使用布局管理器,或者换句话说,您选择使用绝对定位。这意味着组件的坐标、宽度和高度必须由您预先计算和设置。但是,如果您在某处犯了错误(正如您的示例很好地展示的那样),则很难检测到。更不用说,例如,如果您想处理窗口大小调整。这就是LayoutManager存在的原因。

我还建议阅读:

于 2013-01-17T00:57:18.370 回答