JFrame不可见边框问题
我有一个小问题想解决。
在我的 JFrame 上,框架周围似乎有一个看不见的边框。因此,当某些东西应该不可见或停止在 ykoord = 0 时,例如,它会变得不可见/停止在距您看到的边界 20 像素处。虽然背景绘制正确...
也许我需要在这里添加一些内容:
public Game()
{
add(new Board());
setTitle("Game");
setDefaultCloseOperation(EXIT_ON_CLOSE);
setSize(BOARD_WIDTH, BOARD_HEIGTH);
setLocationRelativeTo(null);
setVisible(true);
setResizable(false);
}
请帮忙!
I´ve a little issue I would like to get solved.
On my JFrame there seems to be like an invisible border around the frame. So when something should be invisible or stop at ykoord = 0 e.g., it becomes invisible/stops like 20 pixels from the borders you see. Although the background is painted correctly...
Maybe I need to add something here:
public Game()
{
add(new Board());
setTitle("Game");
setDefaultCloseOperation(EXIT_ON_CLOSE);
setSize(BOARD_WIDTH, BOARD_HEIGTH);
setLocationRelativeTo(null);
setVisible(true);
setResizable(false);
}
Please help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论