1

是的,有些问题很接近:)

Java 中有一个错误(自 2011 年以来一直存在并报告,似乎也没有努力修复它 - 应该在 VM 的本机端处理)

也就是说,当您最大化“未装饰”的窗口或以 PLAF 外观绘制的窗口时,它将覆盖 Windows 任务栏。很好 -当你想要它时可取,但当你想要任务栏最大化时,窗口会覆盖它。设置“始终在顶部”属性没有任何区别。

是的,可以调整窗口大小,但必须知道任务栏在哪里,或者屏幕大小减去任务栏——知道怎么做吗?

如果这样做的话,你需要知道你在没有任务栏的屏幕上最大化。如果在多显示器虚拟桌面上...

有任何想法吗 :)

4

2 回答 2

5

是的,可以调整窗口大小,但必须知道任务栏在哪里,或者屏幕大小减去任务栏——知道怎么做吗?

是的:

1.查找您正在使用的图形设备(假设 p 是Point您正在寻找的屏幕的 a):

GraphicsConfiguration graphicsConfiguration = null;
for (GraphicsDevice gd : GraphicsEnvironment.getLocalGraphicsEnvironment().getScreenDevices()) {
    if (gd.getDefaultConfiguration().getBounds().contains(p)) {
        graphicsConfiguration = gd.getDefaultConfiguration();
        break;
    }
}

2.查看屏幕边界(注意一些边界位置在多个屏幕上是负数 - 例如,如果您有一个位于主屏幕左侧的辅助屏幕),屏幕尺寸和“插图”屏幕通常是任务栏和/或其他图形工件:

Rectangle screenBounds = graphicsConfiguration.getBounds();
Dimension screenSize = screenBounds.getSize();
Insets screenInsets = Toolkit.getDefaultToolkit()
     .getScreenInsets(graphicsConfiguration);
于 2012-06-26T19:15:02.077 回答
2

谢谢

这是上面的代码,在系统最大化窗口后立即调用。它检查任务栏并相应地调整窗口大小。

请注意,就 Java 而言,setBounds 将“取消最大化”窗口,因此“getExtendedState()”将返回未最大化,我需要维护自己的标志。我还必须缓存最后一个预先最大化的窗口大小,这样我就知道以后在哪里恢复窗口 - 太乱了,但它可以工作。

Rectangle bounds;
Rectangle fbounds = frame.getBounds();
GraphicsEnvironment env = GraphicsEnvironment.getLocalGraphicsEnvironment();

// as system maximized this at this point we test the center of the window
// as it should be on the proper screen.
Point p = new Point(fbounds.x + (fbounds.width/2),fbounds.y + (fbounds.height/2));
GraphicsConfiguration graphicsConfiguration = null;
for (GraphicsDevice gd : GraphicsEnvironment.getLocalGraphicsEnvironment().getScreenDevices())
{
    if (gd.getDefaultConfiguration().getBounds().contains(p)) {
        graphicsConfiguration = gd.getDefaultConfiguration();
        break;
    }
}
if(graphicsConfiguration != null)
{
    bounds = graphicsConfiguration.getBounds();
    Insets screenInsets = Toolkit.getDefaultToolkit().getScreenInsets(graphicsConfiguration);

    bounds.x += screenInsets.left;
    bounds.y += screenInsets.top;
    bounds.height -= screenInsets.bottom;
    bounds.width -= screenInsets.right;
} else {
    bounds = env.getMaximumWindowBounds();
}
if(fbounds.equals(bounds)) {
    bounds.height -= 1;
}
frame.setBounds(bounds);
于 2012-06-27T17:04:40.823 回答