互相影响的 wxPython 滑块

发布于 2024-11-03 16:17:45 字数 175 浏览 0 评论 0原文

我正在编写一个基于此 matplotlib slider 示例 的程序。现在我想创建第三个滑块,充当父滑块并同时更改两个滑块。有人知道关于该主题的好教程吗?或者如何在这个例子中实现它?

I am writing a program based on this matplotlib slider example. Now I want to create a third slider that acts as a parent slider and changes both sliders at the same time. Does anybody know a good tutorial on that topic? Or a way how to implement it in this example?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

嘿看小鸭子会跑 2024-11-10 16:17:45

这应该很容易做到。 捕获从“父”滑块发出的 EVT_SCROLL 事件,当这些事件发生时,让处理程序为两个“子”滑块中的每一个调用 SetValue(position)。这样,您可以根据您选择的任何算法来设置它们。

This should be fairly easy to do. Catch the EVT_SCROLL events issued from the "parent" slider, and when these occur, have the handler call SetValue(position) for each of the two "child" sliders. This way, you can set them based on whatever algorithm you choose.

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