@Override
protected void makeActions(IWorkbenchWindow window) {
//产生一个eclipse系统的aboutAction
aboutAction = ActionFactory.ABOUT.create(window);//①
aboutAction.setImageDescriptor(ImageDescriptor.createFromURL(URLUtil.getResourceURL("icons/about.gif")));//②
register(aboutAction);//③
super.makeActions(window);
}
说明:
①aboutAction类型为IWorkbenchAction
②可以另外设置为其它图片
③注册,为快捷键绑定作准备
本文介绍如何在Eclipse中创建并自定义关于对话框的动作(AboutAction),包括设置图标和为快捷键绑定做准备。
194

被折叠的 条评论
为什么被折叠?



