| Author |
Paint not being called
|
Joel McNary
Bartender
Joined: Aug 20, 2001
Posts: 1815
|
|
I've got a custom component that I'm trying to draw on the screen. However, my paint()/painComponent() method is not being called. My component inherits from JPanel and overrides paintComponent(Graphics g) (although it has also overridden paint(Graphics g) at various points in its history as I've tried to make this thing work.) I place this JPanel in another JPanel and that in a JFrame and show the JFrame and .... nothing below is my current draft code, along with a lot of stuff commented out that I've tried and it hasn't worked. Any suggestions? [ March 16, 2004: Message edited by: Joel McNary ]
|
Piscis Babelis est parvus, flavus, et hiridicus, et est probabiliter insolitissima raritas in toto mundo.
|
 |
Nathan Pruett
Bartender
Joined: Oct 18, 2000
Posts: 4121
|
|
Where's the code for the component that overrides paint() and paintComponent()? If you override paint() and don't call super.paint() inside it, then paintComponent() will never get called.
|
-Nate
Write once, run anywhere, because there's nowhere to hide! - /. A.C.
|
 |
 |
|
|
subject: Paint not being called
|
|
|