Jface 中的选项对话框
我习惯于使用 Swing,通常使用 JOptionPane.showOptionDialog(...) 向用户显示一组要选择的选项。
现在我正在切换到 Jface 作为 Eclipse 插件...是否有 JOptionPane.showOptionDialog
的替代方案?
谢谢
I'm used to work with Swing and usually I use JOptionPane.showOptionDialog(...)
for showing to the user a set of options to be chossed.
Now I'm switching to Jface for an Eclipse plugin...Is there an alternative to JOptionPane.showOptionDialog
?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
实际上,一个很好的解决方案是使用 ListDialog 类,如 此处< /a>.
Actually a good solution was using the ListDialog class as explained here.