如何在eclipse中使用eclipse霓虹灯进行对话?(How to have about dialog in e4 with eclipse neon?)

我想知道是否有任何方式我可以有一个关于对话,就像它在eclipse 3.xI记得它在e4中不受支持但是发布了霓虹灯是否有关于对话框被迁移到e4。任何对此的帮助将不胜感激..

I am wondering is there any way I can have an about dialog like it was in eclipse 3.x.I remember it was not supported in e4 but with release of neon whether about dialog is migrated to e4.Any help on this will be appreciated..

最满意答案

Eclipse eon的e4中关于对话框的状态没有变化。

您可以自己编写一个简单的关于对话框的对话框,该对话框应该从org.eclipse.ui.help.aboutAction命令的处理程序中调用(需要使关于在macOS上正常工作)。

安装详细信息之类的内容不太可能会添加到核心e4中。 尤其是因为这需要p2安装代码,这对于e4 RCP是可选的。

There is no change in the status of the About dialog in e4 for Eclipse Neon.

You can code a simple about dialog yourself which should be invoked from a handler for the org.eclipse.ui.help.aboutAction command (required to make About work properly on macOS).

It is not likely that support for things like the Installation Details will ever be added to core e4. Not least because this requires the p2 install code which is optional for an e4 RCP.

更多推荐