vote up 0 vote down star

How can i draw 2d in a JPanel that i have on my GUI? I can do it in eclipse but am having trouble doing it in netbeans. I've looked for some tutorials but the only good one i found was for netbeans 5.5 (world's fasted java netbeans 5.5 tutorial) and i guess netbeans removed some of the things needed for that tutorial.

flag

50% accept rate
How is your IDE choice affecting your ability to use Java2D? What are you doing in Eclipse that is failing in Netbeans? – CarlG Oct 25 at 17:59
Netbeans generates the GUI. – Dacto Oct 25 at 18:11
At which step do you have a problem in the tutorial? – Zed Oct 25 at 18:12
1  
Which is why you should learn how to do it without an IDE so you understand the code and you can take your knowledge from one tool to the other. – camickr Oct 25 at 18:14
I can do it in Eclipse...which doesn't generate GUI. I get stuck on the adding an inner class step. – Dacto Oct 25 at 18:17
show 1 more comment

1 Answer

vote up 1 vote down check

1) Go to the formview where you can edit your frame.
2) Select your panel
3) Click right and select costumize code
4) Add an override:

panel = new JPanel()
{
    public void paint(Graphics g)
    {
        drawPanel(g);
    }
}

5) Create the drawPanel(Graphics g) method.

link|flag
Thank you very much! :) – Dacto Oct 25 at 20:04
Actually custom painting should be done by overriding the paintComponent() method, not the paint() method. – camickr Oct 25 at 20:28

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.