DevX Home    Today's Headlines   Articles Archive   Tip Bank   Forums   

+ Reply to Thread
Results 1 to 4 of 4
  1. #1
    Join Date
    Jan 2006
    Posts
    1

    NetBeans Form Builder and using paintComponent method()?

    Hello everyone. I'm a little new to NetBeans so forgive me if this is an easy question but for the life of me I can't seem to figure this out. Anyways, I'm trying to use the form builder in Netbeans and I want to include a JPanel and override the paintComponent method do so some drawing. So, If I include the Standard JPanel I'm not inheriting from it and can't override the paintComponent method. However, if I try and create a JavaBean class that inherits from JPanel and overrides the paintComponent method and add it to the palette... it is invisible when I go to add it to the form.

    This is really stumping me as to how I can override the method and yet still use the Form Builder...

    Any ideas? I also noticed you could add a AWT Canvas class but I'm confused. Why would you add a Canvas if you don't have the paint method()? Am I missing something obvious or what because it seems like too simple a task to be having such a big problem.

    Thanks for your help in advance!
    -Shaunt

  2. #2
    Join Date
    Oct 2005
    Posts
    107
    Never used a form builder for Java. I've tried some plugins for eclipse, but I thought it was easier to do Swing by hand. Just make a class like...
    Code:
    public class MyCanvas extends JPanel{
    void paintComponent(Graphics g){
    
    }
    }
    Then add it to your frame by hand. What do you need the form builder for?

  3. #3
    Join Date
    Jun 2004
    Posts
    199
    I doubt hit has to do with Netbeans itself. Check out the following for help.

    http://java.sun.com/docs/books/tutor...ing/index.html

  4. #4
    Join Date
    Nov 2004
    Location
    Norway
    Posts
    1,560
    One quick & dirty solution could be to just use the form builder using a plain JPanel first, then when the formbuilding is done you just step into the code and replace the JPanel with your JPanel extension.

    AND...
    Yes, I suspect that NetBeans will get trouble if you return to the formbuilding after the panel replacement, its a dirty solution, almost a hack...
    eschew obfuscation

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
HTML5 Development Center
 
 
FAQ
Latest Articles
Java
.NET
XML
Database
Enterprise
Questions? Contact us.
C++
Web Development
Wireless
Latest Tips
Open Source


Top DevX Stories

Easy Web Services with SQL Server 2005 HTTP Endpoints
JavaOne 2005: Java Platform Roadmap Focuses on Ease of Development, Sun Focuses on the "Free" in F.O.S.S.
Wed Yourself to UML with the Power of Associations
Microsoft to Add AJAX Capabilities to ASP.NET
IBM's Cloudscape Versus MySQL


Sponsored Links