如何在 PythonCard 中更改鼠标光标
如何使用 Python 和 PythonCard 更改鼠标光标以指示等待状态?
我在文档中没有看到任何内容。
How do I change the mouse cursor to indicate a waiting state using Python and PythonCard?
I didn't see anything in the documentation.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
PythonCard 构建在 wx 之上,因此如果导入 wx,您应该能够构建合适的光标(例如使用 wx.CursorFromImage ),设置它(例如使用 wx.BeginBusyCursor ) >)当你的等待开始时,并在你的等待结束时结束它(使用
wx.EndBusyCursor
)。PythonCard builds on top of wx, so if you import wx you should be able to build a suitable cursor (e.g. with
wx.CursorFromImage
), set it (e.g. withwx.BeginBusyCursor
) when your wait begins, and end it (withwx.EndBusyCursor
) when your wait ends.