将自定义按钮添加到 Eclipse RCP 中的关于对话框

Adding custom buttons to the about dialog in eclipse RCP

我正在尝试自定义我的 Eclipse RCP 应用程序中的关于对话框。我已经成功地添加了我的徽标并替换了标题和文本 body,如 Branding Your Application 中所述。

我还想向其中添加一些按钮:发送反馈或打开 wiki 页面等。 有没有办法做到或实现类似的功能?

非常感谢任何帮助。

关于对话框 (org.eclipse.ui.internal.dialogs.AboutDialog) 不支持任何配置。

您突出显示的 'feature image row' 是从 Platform.getBundleGroupProviders() 返回的 IBundleGroupProvider 数组填充的,我看不出有什么方法可以添加到这个。