随笔 - 6  文章 - 129  trackbacks - 0
<2024年12月>
24252627282930
1234567
891011121314
15161718192021
22232425262728
2930311234

常用链接

留言簿(14)

随笔档案(6)

文章分类(467)

文章档案(423)

相册

收藏夹(18)

JAVA

搜索

  •  

积分与排名

  • 积分 - 822215
  • 排名 - 49

最新评论

阅读排行榜

评论排行榜

12 2008 档案

系統托盤

posted @ 2008-12-05 23:56 Ke 阅读(249) | 评论 (0)  编辑

圖片緩存類(CacheImage)

posted @ 2008-12-05 23:54 Ke 阅读(890) | 评论 (0)  编辑

顯示視圖類(ShowViewAction )與ActionManager類一起使用

posted @ 2008-12-05 23:46 Ke 阅读(370) | 评论 (0)  编辑

Action 管理類(ActionManager )

posted @ 2008-12-05 23:45 Ke 阅读(421) | 评论 (0)  编辑

ApplicationWorkbenchWindowAdvisor 類

posted @ 2008-12-05 23:42 Ke 阅读(911) | 评论 (0)  编辑

窗口居中顯示代碼
     摘要: //窗口居中
Shell shell = getWindowConfigurer().getWindow().getShell();
Rectangle screenSize = Display.getDefault().getClientArea();
Rectangle frameSize = shell.getBounds();
shell.setLocation((screenSize.width - frameSize.width)/2, (screenSize.height - frameSize.height)/2);  阅读全文

posted @ 2008-12-05 23:40 Ke 阅读(387) | 评论 (0)  编辑