• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Layout Manager help please????????

 
Greenhorn
Posts: 19
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
what is a good book or a good resource on the web to learn about the layout managers and specifically how to use a layout manager inside of another layout manager i am trying to recreate the GUI interface for WS_FTP and i know i have to do nested layouts but the books i have dont go over nesting them any help would be greatly appreciated
 
Ranch Hand
Posts: 50
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I would recommend Sun's Java Tutorial, specifically the "Creating a GUI with JFC/Swing" trail.
And with regards to using a "layout manager inside of another layout manager" it's really quite simple. You would do it by simply setting the layout of a panel to the second layout you want and then adding it to the original layout. The easiest way to think about it is to split your interface into sections, using a panel for each section with whatever layout is needed. Then use another layout to bring each panel into the final UI design.
Jeff
 
Ranch Hand
Posts: 148
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I'm not sure how well it covers Layout Managers inside of Layout managers but "JFC Unleashed" covers a lot of things that other Swing books don't cover. I recommend that.
p.s. I found the book on some crazy sale for $4.99 at Borders bookstore a while ago.
reply
    Bookmark Topic Watch Topic
  • New Topic