Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发一个基于 GEF 的 Eclipse 编辑器。我为编辑器添加了缩放控件,但我希望它看起来不同(具体来说,我希望它是滑块而不是组合框)。有谁知道我该怎么做?在此先感谢,丹尼尔
这很简单,只需覆盖
org.eclipse.gef.ui.actions.ZoomComboContributionItem.createControl(Composite)
创建一个滑块,然后调用
org.eclipse.gef.editparts.ZoomManager.setZoomAsText(String)
用正确的参数。