Problem mit repaint()

Status
Nicht offen für weitere Antworten.
E

Equilibrium

Gast
Guten Abend,
ich habe ein Problem mit der Funktion repaint bei einer Canvas.
Mein Code sieht so aus:

Code:
public void paint(Graphics g) {

		if (Option.equals("Quadraht")) {

			int x = getSize().width / 2;
			int y = getSize().height / 2;

			g.setColor(Color.black);

			g.drawLine(x - 60, y - 60, x + 60, y - 60);
			g.drawLine(x + 60, y - 60, x + 60, y + 60);
			g.drawLine(x + 60, y + 60, x - 60, y + 60);
			g.drawLine(x - 60, y + 60, x - 60, y - 60);

			g.drawString("a", x, y - 62);
			g.drawString("a", x, y + 70);
			g.drawString("a", x - 70, y);
			g.drawString("a", x + 62, y);

			g.setColor(Color.red);
			g.drawLine(x - 60, y - 60, x + 60, y + 60);

			g.drawString("e", x + 1, y);
		}
		if (Option.equals("Rechteck")) {

			int x = getSize().width / 2;
			int y = getSize().height / 2;
			
			g.setColor(Color.gray);
			g.drawRect(0, 0, 190, 271);

			g.setColor(Color.black);

			g.drawLine(x - 80, y - 40, x + 80, y - 40);
			g.drawLine(x + 80, y - 40, x + 80, y + 40);
			g.drawLine(x + 80, y + 40, x - 80, y + 40);
			g.drawLine(x - 80, y + 40, x - 80, y - 40);
		}
	}

Wenn ich jedoch jetzt repaint() aufrufe nachdem ich Option="Rechteck" gemacht habe, ändert sich nichts. Kann mir einer sagen was ich da falsch mache?.
 
S

SlaterB

Gast
'Quadraht' ist ja gut geschrieben ;)

------

wie wärs wenn dir das Programm das sagt, oder du zumindest sagst, was das Programm sagt?

Code:
public void paint(Graphics g) {

System.out.println("paint aufgerufen, Option: "+..);

if (quadrat) {
System.out.println("Quadrat");
....
} else if (rechteck) {
System.out.println("Rechteck");
...
} else {
System.out.println("unbekannte Option");

}

}
 
G

Guest

Gast
Das mit dem Quadra(h)t werde ich warscheinlich nie hinbekommen, wie oft habe ich das schon verbessert :lol:

Nach dem ich es so probiert habe, wie du es geraten hast, ist alles noch unklarer als zuvor. Option wird zwar wie gewünscht auf Rechteck geändert, jedoch scheint das die paint Methode ziemlich kalt zu lassen.

Code:
public void paint(Graphics g) {
		
		System.out.println("Ich male jetzt etwas!");
		
		if (Option.equals("Quadraht")) {

			int x = getSize().width / 2;
			int y = getSize().height / 2;

			g.setColor(Color.black);

			g.drawLine(x - 60, y - 60, x + 60, y - 60);
			g.drawLine(x + 60, y - 60, x + 60, y + 60);
			g.drawLine(x + 60, y + 60, x - 60, y + 60);
			g.drawLine(x - 60, y + 60, x - 60, y - 60);

			g.drawString("a", x, y - 62);
			g.drawString("a", x, y + 70);
			g.drawString("a", x - 70, y);
			g.drawString("a", x + 62, y);

			g.setColor(Color.red);
			g.drawLine(x - 60, y - 60, x + 60, y + 60);

			g.drawString("e", x + 1, y);
			System.out.println("Ich male ein Quadrat");
		}
		if (Option.equals("Rechteck")) {

			int x = getSize().width / 2;
			int y = getSize().height / 2;

			g.setColor(Color.gray);
			g.drawRect(0, 0, 190, 271);

			g.setColor(Color.red);

			g.drawLine(x - 80, y - 40, x + 80, y - 40);
			g.drawLine(x + 80, y - 40, x + 80, y + 40);
			g.drawLine(x + 80, y + 40, x - 80, y + 40);
			g.drawLine(x - 80, y + 40, x - 80, y - 40);
			System.out.println("Ich male ein Rechteck");
		}
	}

	public String getMethod() {
		return Option;
	}

Ausgegeben wird:
Aktuelle Methode: Rechteck
Ich male jetzt etwas!

Aber es wird weder das Rechteck gezeichnet, noch der Text augegeben.[/quote]
 

Marco13

Top Contributor
System.out.println("Ich male jetzt etwas!");
ändern in
System.out.println("Ich male jetzt etwas, nämlich ein '"+Option+"'");

Vielleicht hilft's...
 

Leroy42

Top Contributor
Nein @Marco. Er hat die Ausgaben schon richtig gemacht
(genauer den Quelltext lesen :cool: )

Code:
if (Option.equals("Rechteck")) {

Bist du sicher, daß in Option (variablennamen klein schreiben)
auch wirklich "Rechteck" steht?

Gib' am Anfang der Methode (vor den Abfragen) auch mal Option aus

Edit: Ach so @Marco. hab dich wohl falsch verstanden; hast so auch Recht.
 
G

Guest

Gast
Mal eine Grundsätzliche Frage, repaint() ruft nur erneut die paint() Methode auf, oder macht das noch etwas anderes? Weil irgendwie scheint es mir, als würde die Variable Option immer sobald repaint aufgerufen wird zurückgesetzt?
 
S

SlaterB

Gast
repaint und weitere Hintergrundoperationen machen
intern vielleicht noch einiges anderes in Richtung Zeichnen/ Verwalten,
ganz bestimmt aber nichts bzgl deiner Logik/ Exemplarvariablen
 

Quaxli

Top Contributor
Dein Problem scheint nicht an der paint-Methode zu liegen. Ich habe die eben mal in einen JFrame reingepackt und alles funktionierte problemlos. Je nachdem, ob ich die Option auf Quadraht ;) oder Rechteck gesetzt hatte, wurde entsprechend gezeichnet.
Vielleicht solltest Du mal ein bißchen mehr Code posten.


<edit>
Ach ja, pack doch mal ein
Code:
		super.paint(g);

als ersten Befehl in Deine paint-Methode.

</edit>
 
G

Guest

Gast
Gut, dann mal ein bisschen mehr Code.

Zeichenflaeche
Code:
import java.awt.Color;
import java.awt.Graphics;
import java.awt.Canvas;

class Zeichenflaeche extends Canvas {

	private static final long serialVersionUID = 1L;

	public String Option = "";

	public Zeichenflaeche() {

		super();
	}

	// Überschreiben der Methode paint() von Canvas

	public void paint(Graphics g) {

		super.paint(g);

		this.setBackground(Color.GRAY);

		System.out.println("Ich male jetzt: " + Option);

		if (Option.equals("Quadraht")) {

			int x = getSize().width / 2;
			int y = getSize().height / 2;

			g.setColor(Color.black);

			g.drawLine(x - 60, y - 60, x + 60, y - 60);
			g.drawLine(x + 60, y - 60, x + 60, y + 60);
			g.drawLine(x + 60, y + 60, x - 60, y + 60);
			g.drawLine(x - 60, y + 60, x - 60, y - 60);

			g.drawString("a", x, y - 62);
			g.drawString("a", x, y + 70);
			g.drawString("a", x - 70, y);
			g.drawString("a", x + 62, y);

			g.setColor(Color.red);
			g.drawLine(x - 60, y - 60, x + 60, y + 60);

			g.drawString("e", x + 1, y);
			System.out.println("Quadrat gemalt");
		}
		if (Option.equalsIgnoreCase("Rechteck")) {

			int x = getSize().width / 2;
			int y = getSize().height / 2;

			g.setColor(Color.gray);
			g.drawRect(0, 0, 190, 271);

			g.setColor(Color.red);

			g.drawLine(x - 80, y - 40, x + 80, y - 40);
			g.drawLine(x + 80, y - 40, x + 80, y + 40);
			g.drawLine(x + 80, y + 40, x - 80, y + 40);
			g.drawLine(x - 80, y + 40, x - 80, y - 40);
			System.out.println("Rechteck gemalt");
		}

	}

	public String getMethod() {
		return Option;
	}

	public void setMethod(String Method) {
		this.Option = Method;
	}
}


Panel4
Code:
class Panel4 {

	private JPanel JP_Links;

	public static Zeichenflaeche canvas;

	JPanel createPanel() {
		
		canvas = new Zeichenflaeche();
		canvas.setBounds(5, 15, 190, 271);

		JP_Links.add(canvas);

		JP_Links = new JPanel();
		JP_Links.setLayout(null);
		JP_Links.setVisible(true);
		JP_Links.setBorder(BorderFactory.createTitledBorder("Skizze"));
		JP_Links.setBounds(300, 350, 200, 290);


		return JP_Links;
	}

	public static void main(String[] args) {
		canvas.setMethod("Rechteck");
	}

	public void update() {
		canvas.repaint();
		System.out.println("Update Erfolgreich");
	}

}


Geometrie
Code:
public class Geometrie {

	private static Zeichenflaeche zeichenflaeche;

	public static void main(String[] args) {

		GUI Gui = new GUI();
		Menu m = new Menu();

		Gui.init();
		Gui.setJMenuBar(m);

		final Panel1 panel1 = new Panel1();
		final Panel2 panel2 = new Panel2();
		final Panel3 panel3 = new Panel3();
		final Panel4 panel4 = new Panel4();

		final JPanel P1 = panel1.createPanel(1);
		final JPanel P2 = panel2.createPanel(2);
		final JPanel P3 = panel3.createPanel(3);
		final JPanel P4 = panel4.createPanel();

		Gui.add(P1);
		Gui.add(P2);
		Gui.add(P3);
		Gui.add(P4);
		Gui.add(zeichenflaeche);

		Gui.setVisible(true);

		m.JMI_TQuadraht.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent e) {
				P1.setVisible(true);
				P1.setBorder(BorderFactory.createTitledBorder("Diagonale"));
				P2.setVisible(true);
				P2.setBorder(BorderFactory.createTitledBorder("Flächeninhalt"));
				P3.setVisible(true);
				P3.setBorder(BorderFactory.createTitledBorder("Umfang"));

				panel1.JTF_Zahl1.setVisible(true);
				panel1.JTF_Zahl2.setVisible(false);
				panel1.JTF_Zahl3.setVisible(false);
				panel1.JTF_Zahl4.setVisible(false);

				panel1.JL_Zahl1.setText("Seite A");

				panel1.JL_Zahl1.setVisible(true);
				panel1.JL_Zahl2.setVisible(false);
				panel1.JL_Zahl3.setVisible(false);
				panel1.JL_Zahl4.setVisible(false);

				panel2.JTF_Zahl1.setVisible(true);
				panel2.JTF_Zahl2.setVisible(false);
				panel2.JTF_Zahl3.setVisible(false);
				panel2.JTF_Zahl4.setVisible(false);

				panel2.JL_Zahl1.setText("Seite A");

				panel2.JL_Zahl1.setVisible(true);
				panel2.JL_Zahl2.setVisible(false);
				panel2.JL_Zahl3.setVisible(false);
				panel2.JL_Zahl4.setVisible(false);

				panel3.JTF_Zahl1.setVisible(true);
				panel3.JTF_Zahl2.setVisible(false);
				panel3.JTF_Zahl3.setVisible(false);
				panel3.JTF_Zahl4.setVisible(false);

				panel3.JL_Zahl1.setText("Seite A");

				panel3.JL_Zahl1.setVisible(true);
				panel3.JL_Zahl2.setVisible(false);
				panel3.JL_Zahl3.setVisible(false);
				panel3.JL_Zahl4.setVisible(false);

				panel1.Option = "Quadraht_Diagonale";
				panel2.Option = "Quadraht_Flächeninhalt";
				panel3.Option = "Quadraht_Umfang";
				zeichenflaeche.Option = "Quadraht";
			}
		});

		m.JMI_TRechteck.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent e) {
				P1.setVisible(true);
				P1.setBorder(BorderFactory.createTitledBorder("Flächeninhalt"));
				P2.setVisible(true);
				P2.setBorder(BorderFactory.createTitledBorder("Umfang"));
				P3.setVisible(true);
				P3.setBorder(BorderFactory.createTitledBorder("Diagonale"));

				panel1.JTF_Zahl1.setVisible(true);
				panel1.JTF_Zahl2.setVisible(true);
				panel1.JTF_Zahl3.setVisible(false);
				panel1.JTF_Zahl4.setVisible(false);

				panel1.JL_Zahl1.setText("Seite A");
				panel1.JL_Zahl2.setText("Seite B");

				panel1.JL_Zahl1.setVisible(true);
				panel1.JL_Zahl2.setVisible(true);
				panel1.JL_Zahl3.setVisible(false);
				panel1.JL_Zahl4.setVisible(false);

				panel2.JTF_Zahl1.setVisible(true);
				panel2.JTF_Zahl2.setVisible(true);
				panel2.JTF_Zahl3.setVisible(false);
				panel2.JTF_Zahl4.setVisible(false);

				panel2.JL_Zahl1.setText("Seite A");
				panel1.JL_Zahl2.setText("Seite B");

				panel2.JL_Zahl1.setVisible(true);
				panel2.JL_Zahl2.setVisible(true);
				panel2.JL_Zahl3.setVisible(false);
				panel2.JL_Zahl4.setVisible(false);

				panel3.JTF_Zahl1.setVisible(true);
				panel3.JTF_Zahl2.setVisible(true);
				panel3.JTF_Zahl3.setVisible(false);
				panel3.JTF_Zahl4.setVisible(false);

				panel3.JL_Zahl1.setText("Seite A");
				panel1.JL_Zahl2.setText("Seite B");

				panel3.JL_Zahl1.setVisible(true);
				panel3.JL_Zahl2.setVisible(true);
				panel3.JL_Zahl3.setVisible(false);
				panel3.JL_Zahl4.setVisible(false);

				zeichenflaeche.setMethod("Rechteck");
				System.out.println("Aktuelle Methode: "+zeichenflaeche.getMethod());
				zeichenflaeche.repaint();
			}
		});

	}
}
 

Quaxli

Top Contributor
Ich hab's kurz überflogen - wildes Teil ;)
Diese JPanel, die ein Canvas reingewürgt kriegen solltest Du wieder ändern, das geht auf Dauer nicht gut. Stattdessen kannst Du auch direkt in JPanel zeichnen, hat auch den Vorteil, daß die Dinger doppelt gebuffert sind.
Außerdem hat mehr als eine Klasse eine main-Methode - welche wird denn nun aufgerufen?

Noch etwas zum Mix von Canvas und JPanel: Die update-Methode, die Du in Panel4 überschrieben hast, würde ich mal rausschmeißen. Lt. API macht nämlich ein repaint() folgendes:

If this component is a lightweight component, this method causes a call to this component's paint method as soon as possible. Otherwise, this method causes a call to this component's update method as soon as possible.

Somit könnte durch das Mischen von Canvas und JPanel hier durchaus eine Schleife entstehen, wenn Dein repaint nur wieder ein update aufruft.

Ich mag um die Uhrzeit so wilde Programme nicht mehr ganz und gar aufdröseln. Mein Rat: Probiere es zunächst im Kleinen und wende es dann auf Dein Programm an.

Hier mal spaßeshalber das kleine Programm, mit dem ich Deine Paint-Methode getestet habe:



Code:
import java.awt.*;
import javax.swing.JFrame;

public class Test extends JFrame {

	String options = "Rechteck";
	
	public static void main(String[] args) {
		new Test();
	}

	public Test() {
		super("test");
		setLocation(100,100);
		setSize(600,600);
		setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
		
		setVisible(true);
	}

	public void paint(Graphics g) {
		
		super.paint(g);

		if (options.equals("Quadraht")) {

			int x = getSize().width / 2;
			int y = getSize().height / 2;

			g.setColor(Color.black);

			g.drawLine(x - 60, y - 60, x + 60, y - 60);
			g.drawLine(x + 60, y - 60, x + 60, y + 60);
			g.drawLine(x + 60, y + 60, x - 60, y + 60);
			g.drawLine(x - 60, y + 60, x - 60, y - 60);

			g.drawString("a", x, y - 62);
			g.drawString("a", x, y + 70);
			g.drawString("a", x - 70, y);
			g.drawString("a", x + 62, y);

			g.setColor(Color.red);
			g.drawLine(x - 60, y - 60, x + 60, y + 60);

			g.drawString("e", x + 1, y);
		}
		if (options.equals("Rechteck")) {

			int x = getSize().width / 2;
			int y = getSize().height / 2;

			g.setColor(Color.gray);
			g.fillRect(0, 0, 190, 271);

			g.setColor(Color.black);

			g.drawLine(x - 80, y - 40, x + 80, y - 40);
			g.drawLine(x + 80, y - 40, x + 80, y + 40);
			g.drawLine(x + 80, y + 40, x - 80, y + 40);
			g.drawLine(x - 80, y + 40, x - 80, y - 40);
		}
	}
}
 

André Uhres

Top Contributor
Ich habe das einfach mal lauffähig gemacht, damit man sieht, worüber man spricht.
Nur, was ist jetzt dein Problem nochmal?
Oder hat es sich hier schon aufgelöst:
Code:
package geo;
/*
* Geometrie.java
*/
//import basics.GUI;
import java.awt.Color;
import java.awt.Graphics;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.BorderFactory;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JMenu;
import javax.swing.JMenuBar;
import javax.swing.JMenuItem;
import javax.swing.JPanel;
import javax.swing.JTextField;
import javax.swing.WindowConstants;
public class Geometrie {
    private static Zeichenflaeche zeichenflaeche;
    public static void main(String[] args) {
        GUI gui = new GUI();
        Menu m = new Menu("Menu");
        JMenuBar bar = new JMenuBar();
        bar.add(m);
        gui.init();
        gui.setJMenuBar(bar);
        final Panel1 panel1 = new Panel1();
        final Panel2 panel2 = new Panel2();
        final Panel3 panel3 = new Panel3();
        final Panel4 panel4 = new Panel4();
        final JPanel p1 = panel1.createPanel(1);
        final JPanel p2 = panel2.createPanel(2);
        final JPanel p3 = panel3.createPanel(3);
        final JPanel p4 = panel4.createPanel();
        gui.add(p1);
        gui.add(p2);
        gui.add(p3);
        gui.add(p4);
        zeichenflaeche = new Zeichenflaeche();
        gui.add(zeichenflaeche);
        gui.setVisible(true);
        m.jmi_TQuadraht.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent e) {
                p1.setVisible(true);
                p1.setBorder(BorderFactory.createTitledBorder("Diagonale"));
                p2.setVisible(true);
                p2.setBorder(BorderFactory.createTitledBorder("Flächeninhalt"));
                p3.setVisible(true);
                p3.setBorder(BorderFactory.createTitledBorder("Umfang"));
                panel1.jtf_Zahl1.setVisible(true);
                panel1.jtf_Zahl2.setVisible(false);
                panel1.jtf_Zahl3.setVisible(false);
                panel1.jtf_Zahl4.setVisible(false);
                panel1.jl_Zahl1.setText("Seite A");
                panel1.jl_Zahl1.setVisible(true);
                panel1.jl_Zahl2.setVisible(false);
                panel1.jl_Zahl3.setVisible(false);
                panel1.jl_Zahl4.setVisible(false);
                panel2.jtf_Zahl1.setVisible(true);
                panel2.jtf_Zahl2.setVisible(false);
                panel2.jtf_Zahl3.setVisible(false);
                panel2.jtf_Zahl4.setVisible(false);
                panel2.jl_Zahl1.setText("Seite A");
                panel2.jl_Zahl1.setVisible(true);
                panel2.jl_Zahl2.setVisible(false);
                panel2.jl_Zahl3.setVisible(false);
                panel2.jl_Zahl4.setVisible(false);
                panel3.jtf_Zahl1.setVisible(true);
                panel3.jtf_Zahl2.setVisible(false);
                panel3.jtf_Zahl3.setVisible(false);
                panel3.jtf_Zahl4.setVisible(false);
                panel3.jl_Zahl1.setText("Seite A");
                panel3.jl_Zahl1.setVisible(true);
                panel3.jl_Zahl2.setVisible(false);
                panel3.jl_Zahl3.setVisible(false);
                panel3.jl_Zahl4.setVisible(false);
                panel1.option = "Quadraht_Diagonale";
                panel2.option = "Quadraht_Flächeninhalt";
                panel3.option = "Quadraht_Umfang";
                zeichenflaeche.option = "Quadrat";
                zeichenflaeche.repaint();
            }
        });
        m.jmi_TRechteck.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent e) {
                p1.setVisible(true);
                p1.setBorder(BorderFactory.createTitledBorder("Flächeninhalt"));
                p2.setVisible(true);
                p2.setBorder(BorderFactory.createTitledBorder("Umfang"));
                p3.setVisible(true);
                p3.setBorder(BorderFactory.createTitledBorder("Diagonale"));
                panel1.jtf_Zahl1.setVisible(true);
                panel1.jtf_Zahl2.setVisible(true);
                panel1.jtf_Zahl3.setVisible(false);
                panel1.jtf_Zahl4.setVisible(false);
                panel1.jl_Zahl1.setText("Seite A");
                panel1.jl_Zahl2.setText("Seite B");
                panel1.jl_Zahl1.setVisible(true);
                panel1.jl_Zahl2.setVisible(true);
                panel1.jl_Zahl3.setVisible(false);
                panel1.jl_Zahl4.setVisible(false);
                panel2.jtf_Zahl1.setVisible(true);
                panel2.jtf_Zahl2.setVisible(true);
                panel2.jtf_Zahl3.setVisible(false);
                panel2.jtf_Zahl4.setVisible(false);
                panel2.jl_Zahl1.setText("Seite A");
                panel1.jl_Zahl2.setText("Seite B");
                panel2.jl_Zahl1.setVisible(true);
                panel2.jl_Zahl2.setVisible(true);
                panel2.jl_Zahl3.setVisible(false);
                panel2.jl_Zahl4.setVisible(false);
                panel3.jtf_Zahl1.setVisible(true);
                panel3.jtf_Zahl2.setVisible(true);
                panel3.jtf_Zahl3.setVisible(false);
                panel3.jtf_Zahl4.setVisible(false);
                panel3.jl_Zahl1.setText("Seite A");
                panel1.jl_Zahl2.setText("Seite B");
                panel3.jl_Zahl1.setVisible(true);
                panel3.jl_Zahl2.setVisible(true);
                panel3.jl_Zahl3.setVisible(false);
                panel3.jl_Zahl4.setVisible(false);
                zeichenflaeche.setMethod("Rechteck");
                System.out.println("Aktuelle Methode: "+zeichenflaeche.getMethod());
                zeichenflaeche.repaint();
            }
        });
    }
}
class Panel4 {
    private JPanel jp_Links;
    public static Zeichenflaeche zeichenflaeche;
    JPanel createPanel() {
        zeichenflaeche = new Zeichenflaeche();
        zeichenflaeche.setBounds(5, 15, 190, 271);
        jp_Links = new JPanel();
        jp_Links.add(zeichenflaeche);
        jp_Links.setLayout(null);
        jp_Links.setVisible(true);
        jp_Links.setBorder(BorderFactory.createTitledBorder("Skizze"));
        jp_Links.setBounds(300, 350, 200, 290);
        return jp_Links;
    }
}
class Zeichenflaeche extends JPanel {
    private static final long serialVersionUID = 1L;
    public String option = "";
    public Zeichenflaeche() {
        super();
    }
    public void paintComponent(Graphics g) {
        super.paintComponent(g);
        this.setBackground(Color.GRAY);
        System.out.println("Ich male jetzt: " + option);
        if (option.equals("Quadrat")) {
            int x = getSize().width / 2;
            int y = getSize().height / 2;
            g.setColor(Color.black);
            g.drawLine(x - 60, y - 60, x + 60, y - 60);
            g.drawLine(x + 60, y - 60, x + 60, y + 60);
            g.drawLine(x + 60, y + 60, x - 60, y + 60);
            g.drawLine(x - 60, y + 60, x - 60, y - 60);
            g.drawString("a", x, y - 62);
            g.drawString("a", x, y + 70);
            g.drawString("a", x - 70, y);
            g.drawString("a", x + 62, y);
            g.setColor(Color.red);
            g.drawLine(x - 60, y - 60, x + 60, y + 60);
            g.drawString("e", x + 1, y);
            System.out.println("Quadrat gemalt");
        }
        if (option.equalsIgnoreCase("Rechteck")) {
            int x = getSize().width / 2;
            int y = getSize().height / 2;
            g.setColor(Color.gray);
            g.drawRect(0, 0, 190, 271);
            g.setColor(Color.red);
            g.drawLine(x - 80, y - 40, x + 80, y - 40);
            g.drawLine(x + 80, y - 40, x + 80, y + 40);
            g.drawLine(x + 80, y + 40, x - 80, y + 40);
            g.drawLine(x - 80, y + 40, x - 80, y - 40);
            System.out.println("Rechteck gemalt");
        }
    }
    public String getMethod() {
        return option;
    }
    public void setMethod(String Method) {
        this.option = Method;
    }
}
class Panel1 extends JPanel{
    JTextField jtf_Zahl1 = new JTextField(5);
    JTextField jtf_Zahl2 = new JTextField(5);
    JTextField jtf_Zahl3 = new JTextField(5);
    JTextField jtf_Zahl4 = new JTextField(5);
    JLabel jl_Zahl1 = new JLabel("jl_Zahl1");
    JLabel jl_Zahl2 = new JLabel("jl_Zahl2");
    JLabel jl_Zahl3 = new JLabel("jl_Zahl3");
    JLabel jl_Zahl4 = new JLabel("jl_Zahl4");
    String option;
    public Panel1(){
        add(jl_Zahl1);
        add(jtf_Zahl1);
        add(jl_Zahl2);
        add(jtf_Zahl2);
        add(jl_Zahl3);
        add(jtf_Zahl3);
        add(jl_Zahl4);
        add(jtf_Zahl4);
    }
    public JPanel createPanel(int i) {
        return this;
    }
}
class Panel2 extends JPanel{
    JTextField jtf_Zahl1 = new JTextField(5);
    JTextField jtf_Zahl2 = new JTextField(5);
    JTextField jtf_Zahl3 = new JTextField(5);
    JTextField jtf_Zahl4 = new JTextField(5);
    JLabel jl_Zahl1 = new JLabel("jl_Zahl1");
    JLabel jl_Zahl2 = new JLabel("jl_Zahl2");
    JLabel jl_Zahl3 = new JLabel("jl_Zahl3");
    JLabel jl_Zahl4 = new JLabel("jl_Zahl4");
    String option;
    public Panel2(){
        add(jl_Zahl1);
        add(jtf_Zahl1);
        add(jl_Zahl2);
        add(jtf_Zahl2);
        add(jl_Zahl3);
        add(jtf_Zahl3);
        add(jl_Zahl4);
        add(jtf_Zahl4);
    }
    public JPanel createPanel(int i) {
        return this;
    }
}
class Panel3 extends JPanel{
    JTextField jtf_Zahl1 = new JTextField(5);
    JTextField jtf_Zahl2 = new JTextField(5);
    JTextField jtf_Zahl3 = new JTextField(5);
    JTextField jtf_Zahl4 = new JTextField(5);
    JLabel jl_Zahl1 = new JLabel("jl_Zahl1");
    JLabel jl_Zahl2 = new JLabel("jl_Zahl2");
    JLabel jl_Zahl3 = new JLabel("jl_Zahl3");
    JLabel jl_Zahl4 = new JLabel("jl_Zahl4");
    String option;
    public Panel3(){
        add(jl_Zahl1);
        add(jtf_Zahl1);
        add(jl_Zahl2);
        add(jtf_Zahl2);
        add(jl_Zahl3);
        add(jtf_Zahl3);
        add(jl_Zahl4);
        add(jtf_Zahl4);
    }
    public JPanel createPanel(int i) {
        return this;
    }
}
class GUI extends JFrame{
    public void init() {
        setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
        setSize(800,600);
        setLocationRelativeTo(null);
    }
}
class Menu extends JMenu{
    JMenuItem jmi_TQuadraht = new JMenuItem("Quadrat");
    JMenuItem jmi_TRechteck = new JMenuItem("Rechteck");
    public Menu(String title){
        super(title);
        add(jmi_TQuadraht);
        add(jmi_TRechteck);
    }
}
 
G

Guest

Gast
Hey vielen Dank, :D
in deinem Entwurf hat sich das Problem aufgelöst, jetzt muss ich nur noch den Fehler finden :toll:
 
Status
Nicht offen für weitere Antworten.
Ähnliche Java Themen
  Titel Forum Antworten Datum
A Problem: repaint() - Schleife AWT, Swing, JavaFX & SWT 3
B Swing Repaint Problem - mal wieder AWT, Swing, JavaFX & SWT 5
Ernesto95 AnimationLoop - Problem bei Aufruf von repaint AWT, Swing, JavaFX & SWT 6
P EDT Problem? Kein Aufruf der repaint Methode AWT, Swing, JavaFX & SWT 6
kodela Problem mit repaint() AWT, Swing, JavaFX & SWT 3
H repaint()-Problem - 50% CPU-Auslastung AWT, Swing, JavaFX & SWT 4
T repaint() Problem AWT, Swing, JavaFX & SWT 2
K Jpanel repaint problem (Fullscreen) AWT, Swing, JavaFX & SWT 5
E AWT Problem mit Repaint (in Loop oder Timer) AWT, Swing, JavaFX & SWT 3
J Swing Verständnis-Problem repaint(int x,int y,int width,int height) AWT, Swing, JavaFX & SWT 3
J [gelöst] repaint problem AWT, Swing, JavaFX & SWT 2
M problem mit repaint()-Methode[gelöst] AWT, Swing, JavaFX & SWT 8
G problem mit threads/repaint ! AWT, Swing, JavaFX & SWT 2
D Problem mit Netbeans und repaint() AWT, Swing, JavaFX & SWT 5
K Problem mit JLabel, Rechteck, repaint() ;) AWT, Swing, JavaFX & SWT 2
K Problem repaint()->paintComponent AWT, Swing, JavaFX & SWT 9
M Problem bei Repaint von Panels AWT, Swing, JavaFX & SWT 2
L Swing repaint problem AWT, Swing, JavaFX & SWT 7
B Problem bei repaint AWT, Swing, JavaFX & SWT 5
V repaint problem AWT, Swing, JavaFX & SWT 12
A Repaint-Problem AWT, Swing, JavaFX & SWT 4
S repaint()-Problem AWT, Swing, JavaFX & SWT 6
S Repaint()-Problem im GBL? AWT, Swing, JavaFX & SWT 5
S paint/repaint problem mit awt/swing? AWT, Swing, JavaFX & SWT 2
L repaint()-Problem AWT, Swing, JavaFX & SWT 18
Juelin Problem mit TextField.requestFocus(); AWT, Swing, JavaFX & SWT 17
Juelin Problem beim Laden Controller AWT, Swing, JavaFX & SWT 2
G Problem mit der Anzeige von jLabel. Unlesbar wenn der Text geändert wird. AWT, Swing, JavaFX & SWT 28
H 2D-Grafik Problem mit Paint AWT, Swing, JavaFX & SWT 1
S Layout - Problem AWT, Swing, JavaFX & SWT 1
Tassos JavaFX/Problem mit der Maussteuerung in Stackpane AWT, Swing, JavaFX & SWT 7
sserio Java Fx - Problem AWT, Swing, JavaFX & SWT 3
A Problem Spiel auf Panel der GUI zu bringen AWT, Swing, JavaFX & SWT 1
A JavaFX Controller Problem AWT, Swing, JavaFX & SWT 1
TheWhiteShadow JavaFX ListView Problem beim Entfernen von Elementen AWT, Swing, JavaFX & SWT 1
E LayoutManager Welcher Layout-Mix löst mein Problem? AWT, Swing, JavaFX & SWT 3
Umb3rus JavaFX Problem mit PropertyValueFactory: can not read from unreadable property AWT, Swing, JavaFX & SWT 1
T Problem mit paintComponent() AWT, Swing, JavaFX & SWT 17
AmsananKING Java Menü-Problem AWT, Swing, JavaFX & SWT 1
K JavaFX Resizing-Problem beim BorderLayout (Center Component) beim Arbeiten mit mehreren FXMLs AWT, Swing, JavaFX & SWT 2
G Instance OF Problem AWT, Swing, JavaFX & SWT 9
FrittenFritze Ein Problem mit der CSSBox, die Größe wird nicht angepasst AWT, Swing, JavaFX & SWT 5
M Problem mit dem Anzeigen von Frames im Vordergrund AWT, Swing, JavaFX & SWT 5
Badebay Problem mit JButton AWT, Swing, JavaFX & SWT 2
newJavaGeek Grid-Layout problem AWT, Swing, JavaFX & SWT 7
J JavaFX Löschen im Tabelview macht Problem AWT, Swing, JavaFX & SWT 15
JavaTalksToMe JavaFx ExekutorService Problem AWT, Swing, JavaFX & SWT 2
Zrebna Problem bei Eventhandling (Value soll nach jedem erneutem Klick gelöscht werden) AWT, Swing, JavaFX & SWT 4
B Problem mit JavaFX AWT, Swing, JavaFX & SWT 5
J css Problem AWT, Swing, JavaFX & SWT 5
B JavaFX habe mein Problem fett markiert AWT, Swing, JavaFX & SWT 2
A Swing Filter-Problem AWT, Swing, JavaFX & SWT 1
temi JavaFX Problem mit IntelliJ und JavaFx 11 unter XUbuntu AWT, Swing, JavaFX & SWT 3
L Java FX Problem mit Ubuntu 18 und JavaFx AWT, Swing, JavaFX & SWT 27
H JTable TableCellEditor-Problem AWT, Swing, JavaFX & SWT 0
kodela Swing Problem mit Warten-Dialog AWT, Swing, JavaFX & SWT 16
B JavaFx Scene Builder Problem AWT, Swing, JavaFX & SWT 2
B [Problem] Java öffnet Word-Datein nicht AWT, Swing, JavaFX & SWT 14
T DataBinding Problem AWT, Swing, JavaFX & SWT 5
Blender3D Problem mit € Symbol Font Gotham Windows 10 Swing AWT, Swing, JavaFX & SWT 11
T Problem mit JTable Sortierung AWT, Swing, JavaFX & SWT 2
J Problem mit Platfrom run later AWT, Swing, JavaFX & SWT 15
J Problem mit Platfrom run later AWT, Swing, JavaFX & SWT 0
D Swing SwingUtils / Thread Problem AWT, Swing, JavaFX & SWT 3
L JavaFX Problem beim Aufrufen einer Methode AWT, Swing, JavaFX & SWT 5
T Swing Problem mit Datum und FormattedTextField AWT, Swing, JavaFX & SWT 2
S AWT Java print dialog Problem AWT, Swing, JavaFX & SWT 0
olfibits JavaFX Problem mit HTMLEditor AWT, Swing, JavaFX & SWT 0
W SWT hover-background-problem with first column in TreeViewer AWT, Swing, JavaFX & SWT 0
M Problem mit Add JScrollPane AWT, Swing, JavaFX & SWT 25
Mario1409 Swing JTextArea scroll Problem AWT, Swing, JavaFX & SWT 0
N Swing Problem mit loop AWT, Swing, JavaFX & SWT 2
S Swing Problem mit Button und ActionListener AWT, Swing, JavaFX & SWT 5
S Swing & Clean und build Problem AWT, Swing, JavaFX & SWT 12
S JLabel setText() Problem AWT, Swing, JavaFX & SWT 6
I 2D-Grafik Problem beim Ändern der Farbe eine 2d Objekts AWT, Swing, JavaFX & SWT 3
G Swing Splitpane Problem AWT, Swing, JavaFX & SWT 1
F Problem mit der FXML Rectangle Shape AWT, Swing, JavaFX & SWT 2
N JavaFX Stranges Problem mit der Autoscroll-Eigenschaft von Textareas AWT, Swing, JavaFX & SWT 0
E Java FX FXML Problem mit html Scriptausführung AWT, Swing, JavaFX & SWT 2
J JavaFX Intersect Problem mit Shapes AWT, Swing, JavaFX & SWT 10
R JavaFX MediaPlayer AVI-Problem AWT, Swing, JavaFX & SWT 1
M Swing Problem mit ListCellRenderer AWT, Swing, JavaFX & SWT 7
D Problem mit JTable AWT, Swing, JavaFX & SWT 1
F GUI Auflösung ändern - Koordianten und Proportions Problem AWT, Swing, JavaFX & SWT 21
J Problem mit Button darstellung AWT, Swing, JavaFX & SWT 23
M Problem mit Layoutmanagern... Hilfe wäre sehr nett. AWT, Swing, JavaFX & SWT 2
S 2D-Grafik Problem mit Variablen AWT, Swing, JavaFX & SWT 4
7 JavaFX Problem beim Zeichnen eines Dreiecks in einem GUI AWT, Swing, JavaFX & SWT 6
M Swing AttributiveCellTableModel addRow() Problem AWT, Swing, JavaFX & SWT 1
J Swing Problem mit Graphics Methode AWT, Swing, JavaFX & SWT 4
N JavaFX Problem mit table multiple selection AWT, Swing, JavaFX & SWT 5
K CheckBox Problem AWT, Swing, JavaFX & SWT 5
Grevak DisplayMode Problem seit Windows 10 AWT, Swing, JavaFX & SWT 2
S Swing Eigene JComboBox Problem! AWT, Swing, JavaFX & SWT 1
B Swing Problem mit Bildpfad AWT, Swing, JavaFX & SWT 4
N Swing Problem beim Scrollen mit JScrollPane AWT, Swing, JavaFX & SWT 6
V Graphics g - drawOval problem mit background AWT, Swing, JavaFX & SWT 1
C AWT Problem mit Protokol Fenster AWT, Swing, JavaFX & SWT 0
M Swing pack() Problem mit Taskleiste AWT, Swing, JavaFX & SWT 4

Ähnliche Java Themen


Oben