Results 1 to 4 of 4
Thread: JFrame resizing
- 07-20-2009, 04:30 PM #1
Senior Member
- Join Date
- Nov 2007
- Posts
- 160
- Rep Power
- 6
JFrame resizing
I currently have my JFrame set to be unresizable for simplicity's sake.
Now I want to set it to be ONLY vertically resizable but I only want two components to change (vertically) in size when this happens. I want everything else to remain exactly the same.
Can anyone help?Last edited by carderne; 07-22-2009 at 05:54 PM.
- 07-22-2009, 05:54 PM #2
Senior Member
- Join Date
- Nov 2007
- Posts
- 160
- Rep Power
- 6
Bumpity bump.
-
You can set a JFrame's minimum size via setMinimumSize, but this doesn't work (as far as I know for maximum size). If you absolutely need maximum size, then you can use a ComponentListener similar to this one:Now I want to set it to be ONLY vertically resizable
but it's kind of a kludge as it allows for a partial brief re-size of width before snapping back to the desired width.Java Code:// assuming panelWidth is some int, say 800 addComponentListener(new ComponentAdapter() { @Override public void componentResized(ComponentEvent e) { Dimension size = ResizePanel.this.getSize(); ResizePanel.this.setPreferredSize(new Dimension(panelWidth, size.height)); frame.pack(); } });
You may wish to study your layout managers tutorial for this one. BoxLayout comes to mind here, and I think you'll want to set the maximumsize of your components.but I only want two components to change (vertically) in size when this happens
- 07-22-2009, 07:42 PM #4
Senior Member
- Join Date
- Nov 2007
- Posts
- 160
- Rep Power
- 6
Similar Threads
-
JFrame resizing problem
By Bluefox815 in forum AWT / SwingReplies: 7Last Post: 02-24-2011, 07:56 PM -
Resizing Images in JPanel??
By NoNickName in forum New To JavaReplies: 1Last Post: 04-09-2009, 10:19 PM -
panel resizing
By kumar_gemi in forum New To JavaReplies: 3Last Post: 03-13-2009, 02:51 AM -
Image Resizing and DPi
By Rob_ in forum Java AppletsReplies: 4Last Post: 11-27-2008, 02:21 PM -
Image resizing
By alley in forum Java 2DReplies: 2Last Post: 11-13-2007, 10:10 AM


LinkBack URL
About LinkBacks
Reply With Quote

Bookmarks