Java Swing;如何制作,以便程序在屏幕的最右侧开始?

前端之家收集整理的这篇文章主要介绍了Java Swing;如何制作,以便程序在屏幕的最右侧开始?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
默认情况下,我的Swing程序从显示器的左上角开始.有没有办法让它在右侧弹出?

显示器怎么样?我可以让它在右侧显示器上弹出吗?

谢谢.

卡罗

解决方法

假设您不想掩盖任务栏,则应使用getMaximumWindowBounds.

Java API

http://www.javabeginner.com/java-swing/java-jframe-class-example

Centering JFrame’s

By default,a Jframe is displayed in
the upper-left corner of the screen.
To display a frame at a specified
location,you can use the
setLocation(x,y) method in the JFrame
class. This method places the
upper-left corner of a frame at
location (x,y).

右上角的伪代码看起来像这样:

yourJFrame.setLocation(
  GraphicsEnvironment.getMaximumWindowBounds().getWidth() - 
  yourJFrame.getWidth(),0);
原文链接:https://www.f2er.com/java/130081.html

猜你在找的Java相关文章