随笔 - 6  文章 - 129  trackbacks - 0
<2026年5月>
262728293012
3456789
10111213141516
17181920212223
24252627282930
31123456

常用链接

留言簿(14)

随笔档案(6)

文章分类(467)

文章档案(423)

相册

收藏夹(18)

JAVA

搜索

  •  

积分与排名

  • 积分 - 842205
  • 排名 - 49

最新评论

阅读排行榜

评论排行榜

12 2008 档案

系統托盤

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

圖片緩存類(CacheImage)

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

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

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

Action 管理類(ActionManager )

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

ApplicationWorkbenchWindowAdvisor 類

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