我在屏幕上显示JDialog
,我想根据条件模拟其移动(从一个位置拖动到另一个位置)。有什么方法可以做到吗?
答案 0 :(得分:3)
请参阅下面的这段代码。我刚刚测试过,它工作正常。这只是一个概念证明。
private void startDialog() {
final JDialog d = new JDialog(this, "Test", true);
d.getContentPane().add(new JLabel("Something"));
d.setBounds(100, 100, 400, 300);
Thread t = new Thread(new Runnable() {
public void run() {
for (int i = 0; i < 50; i++) {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
Point p = d.getLocation();
d.setLocation(p.x + 10, p.y + 10);
}
});
try {
Thread.sleep(100);
} catch (InterruptedException e) {
// ignore
}
}
}
});
t.start();
d.setVisible(true);
}
您可以自己改进代码:
Timer
代替常规Thread
只需从任何Swing应用程序调用此方法即可。