随笔 - 6  文章 - 129  trackbacks - 0
<2025年5月>
27282930123
45678910
11121314151617
18192021222324
25262728293031
1234567

常用链接

留言簿(14)

随笔档案(6)

文章分类(467)

文章档案(423)

相册

收藏夹(18)

JAVA

搜索

  •  

积分与排名

  • 积分 - 825083
  • 排名 - 49

最新评论

阅读排行榜

评论排行榜

12 2008 档案

系統托盤

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

圖片緩存類(CacheImage)

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

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

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

Action 管理類(ActionManager )

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

ApplicationWorkbenchWindowAdvisor 類

posted @ 2008-12-05 23:42 Ke 阅读(913) | 评论 (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 阅读(388) | 评论 (0)  编辑