我有一个JDialog
显示在屏幕上,我想根据条件模拟它的移动(从一个位置拖动到另一个位置)。有什么办法可以做到吗?
问问题
119 次
1 回答
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);
}
您可以自己改进代码:
- 使用 a
Timer
而不是常规Thread
- 调整睡眠时间和位置跳跃等等
只需从任何 Swing 应用程序调用此方法即可。
于 2012-08-24T20:55:16.663 回答