尝试找到一个纯Python滚动条、滑块或仪表小部件来控制图形的x轴(wxPython)
有谁知道其中的示例/教程?我想使用鼠标单击/拖动和控制 xy 图(对于 mpl)的 x-min 和 x-max 值。 放入 wxPython-
提前
谢谢。 --DM
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
有谁知道其中的示例/教程?我想使用鼠标单击/拖动和控制 xy 图(对于 mpl)的 x-min 和 x-max 值。 放入 wxPython-
提前
谢谢。 --DM
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
这应该很容易做到。您看过文档和这个示例?
因此,当滑块发生变化时,您可以轻松设置所需的值。此外,还有一个
SetMin
和SetMax
方法可以满足您的需求。This should be pretty easy to do. Have you looked at the docs and this example?
So when the slider changes, you can easily set the values you desire. Also, there is a
SetMin
andSetMax
method for what you want.RulerCtrl 小部件可能可以满足您的需求。
它与任何 Python GUI 一样是“纯 Python”,因为它是从 wxPython 原语构建的。下面是 wxPython 演示的屏幕截图。您可以单击箭头并沿着标尺拖动它们。
The RulerCtrl widget by Andrea Gavana can probably do what you want.
It's "pure Python" as much as any Python GUI can be in the sense that it's built from wxPython primitives. Below is a screenshot from the wxPython demo. You can click on the arrows and drag them along the ruler.