随笔 - 6  文章 - 129  trackbacks - 0
<2024年11月>
272829303112
3456789
10111213141516
17181920212223
24252627282930
1234567

常用链接

留言簿(14)

随笔档案(6)

文章分类(467)

文章档案(423)

相册

收藏夹(18)

JAVA

搜索

  •  

积分与排名

  • 积分 - 821413
  • 排名 - 49

最新评论

阅读排行榜

评论排行榜

12 2008 档案

系統托盤

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

圖片緩存類(CacheImage)

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

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

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

Action 管理類(ActionManager )

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

ApplicationWorkbenchWindowAdvisor 類

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