如何将标签添加到 SWT 刻度刻度?

发布于 2024-10-16 06:49:14 字数 81 浏览 1 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

ペ泪落弦音 2024-10-23 06:49:14

这可能不完全是您所要求的,但您可以在“比例”小部件旁边合并一个“文本”小部件,以响应您的“比例”值。

例如:

final Scale scale = new Scale(shell, SWT.HORIZONTAL);   
        scaleValue = new Text(shell, SWT.SINGLE | SWT.BORDER);

        //scale properties omitted...

        scale.addListener(SWT.Selection, new Listener() {
            public void handleEvent(Event event) {
                int perspectivevalue = scale.getSelection();
                scaleValue.setText("" + (perspectivevalue));
            }
        });

无论您将“缩放”滑块拖动到什么位置,这都会更新“文本”小部件中的值。

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:

final Scale scale = new Scale(shell, SWT.HORIZONTAL);   
        scaleValue = new Text(shell, SWT.SINGLE | SWT.BORDER);

        //scale properties omitted...

        scale.addListener(SWT.Selection, new Listener() {
            public void handleEvent(Event event) {
                int perspectivevalue = scale.getSelection();
                scaleValue.setText("" + (perspectivevalue));
            }
        });

This has the effect of updating the value in the Text widget given whatever you drag the Scale slider to.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文