Results 1 to 5 of 5
Thread: Label not visible on panel
- 01-29-2011, 12:45 PM #1
Member
- Join Date
- Dec 2010
- Posts
- 55
- Rep Power
- 0
Label not visible on panel
Greetings all!
I've got a label, which is not visible on a panel??
When i click on the panel, the tekst 'geklikt op een verblijf met als diersoort... ' showed up, but the label isn't visible...?Java Code:public void mouseClicked(MouseEvent e) { add(new JLabel ("Grootte van de bal: ")); System.out.println("geklikt op een verblijf met als diersoort ..." + dierSoort); }Last edited by warchieflll; 01-29-2011 at 12:54 PM.
-
If you ever add a component to a container, you need to revalidate that container after the changes have been made. This is done by calling revalidate() on the container (assuming that it derives from JComponent). Sometimes, especially if you also have to remove components, you must call repaint() on the container as well.
- 01-29-2011, 01:06 PM #3
Member
- Join Date
- Dec 2010
- Posts
- 55
- Rep Power
- 0
Hmm... the panel is showing now indeed something, but not what I want yet... I draw a panel (with dragging). Now if I click the mouse with the revalidate(); code, the panel takes a different size...
- 01-29-2011, 01:29 PM #4
Member
- Join Date
- Dec 2010
- Posts
- 55
- Rep Power
- 0
Ah, I see it works with setBounds... thanks for you help!! Ur great :)
-
I think that you are having issues with your container's layout manager. Which manager are you using? Also, please look at the link in my signature below on creating an SSCCE so that we can run and test your code, alter it, and better help you solve your problem.
Similar Threads
-
panel on a panel not visible
By warchieflll in forum Advanced JavaReplies: 2Last Post: 01-29-2011, 08:29 PM -
Add panel to parent panel
By LovJava in forum AWT / SwingReplies: 10Last Post: 09-02-2010, 08:43 PM -
Show label in panel, combo box, action listener
By cselic in forum Java 2DReplies: 4Last Post: 08-11-2010, 12:47 PM -
Adding a panel to a panel
By rclausing in forum New To JavaReplies: 7Last Post: 02-02-2010, 05:56 AM -
JTextField not visible?
By McChill in forum New To JavaReplies: 2Last Post: 05-20-2009, 12:17 AM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks