Prepare for your Next Interview
|
Welcome to the Geeks Talk forums. You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today! If you have any problems with the registration process or your account login, please contact contact us. |
This is a discussion on Swing within the Java forums, part of the Software Development category; Difference Between JFrame & JWindow?...
|
|||||||
|
|||
|
Re: Swing
JWindow doesn't have a title bar, minimize-maximize buttons. In java terminology..it is undecorated. The components cannot be added and a layout cannot be assigned directly to the JWindow. Instead it can be done to contentpane in JWindow.
JFrame on the other hand has all the above. It is decorated (title bar, minimize-maximize buttons) and commponents & layout can be added directly to it. I hope this helps. |
|
|||
|
Re: Swing
Hi Friends,
The JWindow is a top-level container, but without any embellishments like minimis/maximise buttons. It can be used straight against the desktop, but you usually use JFrame instead. JWindow does not have the title bar, window-management buttons, or other trimmings associated with a JFrame. Think of it as a window without a border. One thing you should also notice that is instead of adding to the window itself like you could with a JFrame, you want to make sure that you add to the Content Pane of the window. Thanks, Riju |
![]() |
|
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Exforsys.com Swing Extreme Testing | admin | Web Design | 0 | 07-11-2008 12:40 AM |
| JTable creation in swing | ssgvenkat2002 | Java | 1 | 01-30-2008 10:02 AM |
| Does QTP support Swing applications | Geek_Guest | QTP | 0 | 09-18-2007 07:56 AM |
| diff b/w AWT and Swing | vmshenoy | Java | 2 | 01-05-2007 06:06 AM |
| Swing Question | Informatiker | Java | 2 | 09-16-2006 03:53 PM |