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.
我正在编写一个基于这个matplotlib 滑块示例的程序。现在我想创建第三个滑块作为父滑块并同时更改两个滑块。有人知道关于该主题的好教程吗?或者在这个例子中如何实现它?
这应该很容易做到。 捕获从“父”滑块发出的 EVT_SCROLL事件,当这些事件发生时,让处理程序为两个“子”滑块中的每一个调用 SetValue(position) 。这样,您可以根据您选择的任何算法设置它们。