How do you force a java swt program to “move itself to the foreground”?

本文介绍了一种在Java SWT程序中使最小化的Shell窗口恢复到前台的方法。通过先将Shell窗口设置为最小化状态,再取消最小化并激活Shell窗口,可以成功将Shell窗口带回前台。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >


There is a way to make it work with what you initially tried. You actually needto call shell.setMinimized(false) and after that shell.setActive() torestore the previous state of the shell. However, that only works ifthe shell was truely in the minimized state. So here is my finalsolution, which artificially minimizes the shell if it was notminimized already. The cost is a quick animation if the minimization has to bedone.

shell.getDisplay().syncExec(newRunnable() {  

 @Override   public void run() {      

 if (!shell.getMinimized())       

{           

shell.setMinimized(true);      

 }     

  shell.setMinimized(false);    

  shell.setActive();   

}});

 

参考资料:http://stackoverflow.com/questions/2315560/how-do-you-force-a-java-swt-program-to-move-itself-to-the-foreground

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值