Java SWT界面的托盘显示
作者:网络转载 发布时间:[ 2013/8/8 15:00:52 ] 推荐标签:
//注?窗口??
shell.addShellListener(new ShellAdapter() {
//??窗口小化按??,窗口?藏,托?中?示??
public void shellIconified(ShellEvent e) {
toggleDisplay(shell, tray);
}
//??窗口???,并不?止程序,而是?藏窗口,同?托?中?示??
public void shellClosed(ShellEvent e) {
e.doit = false; //取消??操作
toggleDisplay(shell, tray);
}
});
shell.setSize(320, 240);
center(shell);
shell.open();
while(!shell.isDisposed()) {
if(!display.readAndDispatch()) {
display.sleep();
}
}
display.dispose();
}
/**
* 窗口是可????,??藏窗口,在托?中?示程序??
* 窗口是?藏???,??示窗口,?托?中???除
*/
private static void toggleDisplay(Shell shell, Tray tray) {
try {
shell.setVisible(!shell.isVisible()); //控制窗口?示
tray.getItem(0).setVisible(!shell.isVisible()); //控制托????示
//如果窗口是?示??
if(shell.getVisible()) {
shell.setMinimized(false); //阻止窗口小化
shell.setActive(); //激活窗口
}
} catch(Exception e) {
e.printStackTrace();
}
}
/**
* 窗口居中?示
*/
private static void center(Shell shell) {
Monitor monitor = shell.getMonitor();
Rectangle bounds = monitor.getBounds();
Rectangle rect = shell.getBounds();
int x = bounds.x + (bounds.width - rect.width)/2;
int y = bounds.y + (bounds.height - rect.height)/2;
shell.setLocation(x, y);
}
}
相关推荐
更新发布
功能测试和接口测试的区别
2023/3/23 14:23:39如何写好测试用例文档
2023/3/22 16:17:39常用的选择回归测试的方式有哪些?
2022/6/14 16:14:27测试流程中需要重点把关几个过程?
2021/10/18 15:37:44性能测试的七种方法
2021/9/17 15:19:29全链路压测优化思路
2021/9/14 15:42:25性能测试流程浅谈
2021/5/28 17:25:47常见的APP性能测试指标
2021/5/8 17:01:11