如何在 PythonCard 中更改鼠标光标

发布于 2024-07-23 05:39:59 字数 71 浏览 3 评论 0原文

如何使用 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 技术交流群。

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

发布评论

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

评论(1

吖咩 2024-07-30 05:39:59

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. with wx.BeginBusyCursor) when your wait begins, and end it (with wx.EndBusyCursor) when your wait ends.

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