随笔 - 6  文章 - 129  trackbacks - 0
<2024年4月>
31123456
78910111213
14151617181920
21222324252627
2829301234
567891011

常用链接

留言簿(14)

随笔档案(6)

文章分类(467)

文章档案(423)

相册

收藏夹(18)

JAVA

搜索

  •  

积分与排名

  • 积分 - 815449
  • 排名 - 49

最新评论

阅读排行榜

评论排行榜

12 2008 档案

系統托盤

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

圖片緩存類(CacheImage)

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

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

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

Action 管理類(ActionManager )

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

ApplicationWorkbenchWindowAdvisor 類

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