互相影响的 wxPython 滑块
我正在编写一个基于此 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这应该很容易做到。 捕获从“父”滑块发出的 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.