如何将标签添加到 SWT 刻度刻度?
我有一个 SWT Scale 小部件,我需要向刻度上的刻度添加标签。
有办法做到这一点吗?也许在滑块小部件上?
谢谢
I have a SWT Scale widget, and I need to add labels to the ticks on the scale.
Is there a way to do this? maybe on a Slider widget?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这可能不完全是您所要求的,但您可以在“比例”小部件旁边合并一个“文本”小部件,以响应您的“比例”值。
例如:
无论您将“缩放”滑块拖动到什么位置,这都会更新“文本”小部件中的值。
This might be not exactly what you are asking, but you could incorporate a Text widget beside the Scale widget, responding to your Scale values.
For instance:
This has the effect of updating the value in the Text widget given whatever you drag the Scale slider to.