Results 1 to 9 of 9
Thread: JFrame at Center Screen
- 11-02-2007, 01:26 PM #1
Member
- Join Date
- Jun 2007
- Location
- Colombo, Sri Lanka
- Posts
- 32
- Rep Power
- 0
JFrame at Center Screen
Hi,
I want a JFrame to always appear at the center of the screen. Is there a way to achieve this?
Regards,
Hiranya
- 11-02-2007, 01:57 PM #2
Java Code:// Get the size of the screen Dimension dim = Toolkit.getDefaultToolkit().getScreenSize(); // Determine the new location of the window int w = window.getSize().width; int h = window.getSize().height; int x = (dim.width-w)/2; int y = (dim.height-h)/2; // Move the window window.setLocation(x, y);
- 11-02-2007, 04:43 PM #3
If you are using j2se 1.4+ you have access to the Window method
setLocationRelativeTo(Component c). Use null for the argument to center your top–level container.
- 01-01-2010, 05:16 PM #4
Member
- Join Date
- Oct 2009
- Posts
- 88
- Rep Power
- 0
use this.setLocationRelativeTo(getRootPane());
- 01-03-2010, 08:32 PM #5
- 02-11-2010, 10:44 AM #6
Member
- Join Date
- Feb 2010
- Posts
- 1
- Rep Power
- 0
- 02-11-2010, 11:17 AM #7
Something useful to a rotten dead thread which has been answered three years ago? Come on.
Math problems? Call 1-800-[(10x)(13i)^2]-[sin(xy)/2.362x]
The Ubiquitous Newbie Tips
- 02-11-2010, 04:28 PM #8
Senior Member
- Join Date
- Jul 2009
- Posts
- 1,146
- Rep Power
- 5
It was usefull. It told anyone reading this posting to ignore that suggestion.Perhaps you could have tried adding something useful, rather than just "Eejit"?
The proper solution has already been given so there was no need to repeat it.
Why don't you try (as a new member to the forum) to contribute something positive.
-
Similar Threads
-
new screen
By tha_crazy in forum New To JavaReplies: 4Last Post: 02-16-2011, 10:46 AM -
Center background image
By Floetic in forum AWT / SwingReplies: 1Last Post: 04-24-2008, 05:50 PM -
center a form
By tommy in forum New To JavaReplies: 2Last Post: 08-06-2007, 08:47 PM -
Help Center Live 2.1.3
By JavaBean in forum Java SoftwareReplies: 0Last Post: 07-06-2007, 03:43 PM -
Full screen
By Jack in forum Advanced JavaReplies: 2Last Post: 07-02-2007, 05:49 AM


LinkBack URL
About LinkBacks


Bookmarks