所以,我有一个 jFrame,我正在其中构建聊天的主界面窗口。这个窗口/jFrame 有几个按钮,每个按钮都显示一个 jDialog(我之前在 Netbeans 中创建它,将 jDialog 拖到父级(?) jFrame 上)。
我的问题是两个窗口都设置为undecorated = true
,所以我希望让用户通过单击并拖动窗口的一部分来随意拖动和移动所有窗口(在未装饰时模拟标题栏)
在所有 jFrames 中,我通过以下代码完成了这一点initComponents()
:
final Point point = new Point(0,0); // Why 'final' and not simply Point point?
addMouseListener(new MouseAdapter() {
public void mousePressed(MouseEvent e) {
if(!e.isMetaDown()){
point.x = e.getX();
point.y = e.getY();
System.out.println("Ratón pulsado: " + point.x + "," + point.y);
}
}
});
addMouseMotionListener(new MouseMotionAdapter() {
public void mouseDragged(MouseEvent e) {
if(!e.isMetaDown() && point.y <= 17){ //Coordinates of title bar, any X and up to 17px from the top border
Point p = getLocation();
setLocation(p.x + e.getX() - point.x, p.y + e.getY() - point.y);
System.out.println("Ratón movido: " + (p.x + e.getX() - point.x) + "," + (p.y + e.getY() - point.y));
}
}
});
但是,我不知道如何在 jDialog 中使用此代码。当我在导航器中右键单击它并选择自定义代码时,我无法将其粘贴到那里,因为整个 jFrame 停止工作。我是 jFrames 的 jDialogs 子项的新手,所以请帮我一些指导方针:) 谢谢