在面板上绘图但是当通过另一个框架添加时,没有任何绘图

时间:2015-06-08 01:04:30

标签: java user-interface panel draw

我正在研究一个项目,我的工作的一般想法是在一个独立的项目中完成它的每一部分,然后在通过库完成主项目时添加它。

我的问题是 - 我所做的一件事就是在面板上进行绘画。 当我添加一个将它连接到主项目的图层窗格时,实际上没有绘图。

这是我的项目示例代码:

在代码示例1中有JLayeredPane,它包含我的面板以执行绘图。

在代码示例2中有一个按钮。它的actionPerformed是将JLayeredPane添加到面板。但问题是在添加JLayeredPane之后没有出现绘图。

代码示例1:

public class GraphGui extends javax.swing.JFrame {

/**
 * Creates new form GraphGui
 */
adjacencyMatrix m = new adjacencyMatrix();
Dfs df = new Dfs();
int[] x = new int[df.MAX_VERTS];
int[] y = new int[df.MAX_VERTS];
public Graphics2D d;
public Graphics2D doo;
int i = 0;


public GraphGui() {
    setlookAndFeel();
    initComponents();
    setLocationRelativeTo(null);
    DFS.setVisible(true);
    adjMatrics.setVisible(false);

//display is the panel that draw over
    d = (Graphics2D) display.getGraphics();
    doo = (Graphics2D) jPanel2.getGraphics();


}

//crating an initialization  of components are done automatically 

public void jButton1ActionPerformed(java.awt.event.ActionEvent evt)  {                                         

    df.dfs();
    doo.setFont(new Font("TimesRoman", Font.BOLD, 19));
    doo.drawString("visits: " + df.out, 5, 20);
    df.out = "";
}                                        

public void AddE1ActionPerformed(java.awt.event.ActionEvent evt) {                                      
    String j = start1.getText();
    int k = Integer.parseInt(j) - 1;
    String c = end1.getText();
    int v = Integer.parseInt(c) - 1;

    df.addEdge(k, v);
    d.setFont(new Font("TimesRoman", Font.BOLD, 17));
    d.drawLine(x[k] + 30, y[k] + 20, x[v], y[v] + 19);
}                                     

public void AddV1ActionPerformed(java.awt.event.ActionEvent evt) {                                      
    String f = ver1.getText();
    String toUpperCase = f.toUpperCase();
    char r = toUpperCase.charAt(0);
    df.addVertex(r);
    int radius = 30;
    int R = (int) (Math.random() * 256);
    int G = (int) (Math.random() * 256);
    int B = (int) (Math.random() * 256);
    x[i] = R % 320;
    y[i] = B % 167;

    d.setColor(new Color(R, G, B));
    d.setFont(new Font("TimesRoman", Font.BOLD, 15));
    d.drawOval(x[i], y[i], radius, radius);
    d.fillOval(x[i], y[i], radius, radius);
    d.setColor(Color.BLACK);
    d.drawString(r + "", x[i] + 10, y[i] + 20);
d.drawOval(0, 0, radius, radius);
    i++;
}  

此链接显示了样本1应该执行的代码:

https://pbs.twimg.com/media/CG8INXZXAAEqthh.png:large

代码示例2

{
    private void graphBTActionPerformed(java.awt.event.ActionEvent evt)  {                                        
    GraphGui gr=new GraphGui();

    jPanel2.removeAll();

    jPanel2.add(gr.DFS);

    MainLayer.setVisible(false);
    Displaylayer.setVisible(true);
}         

}

以下链接是我在添加面板后得到的 - 什么都没有。

https://pbs.twimg.com/media/CG8IR7rWoAA3qKG.png:large

1 个答案:

答案 0 :(得分:0)

这里有两个不同的问题。

(1)最简单的答案是 - 你需要致电' getGraphics'从你的行动方法中。不是来自构造函数。 E.g。

public void jButton1ActionPerformed(java.awt.event.ActionEvent evt)  {                                         
      Graphics2D doo = (Graphics2D) jPanel2.getGraphics();
      ...
      doo.setFont(...);
      doo.drawString(...);
}  

(2)这将产生可见的绘图,但只要java决定重绘,它们就会消失 - 例如如果你最小化框架。这可以通过说明中提到的paintComponent()来解决。基本的想法是你的组件(例如jPanel2)将包含它需要绘制的输出的数据结构 - 字符串,边,顶点等。在paintComponent中,你将它们全部绘制出来。在actionPerformed()中,您可以更改数据结构并调用'重绘'。这种方法的草图:

class MyPanel extends JPanel{
    private String text;
    private Point[] vertextes;
    public void addVertext(..)
    public void paintComponent(Graphics g){
            ... use g to drawString, drawOval... according to 'text' and 'vertexes'
    }
}
// Then in your JFrame:
private MyPanel p;
...
actionPerfomred(...){
   p.addVertext(..)
   p.repaint();
}