制作带有忙碌图标的鼠标(C#)

发布于 2024-08-26 12:00:15 字数 49 浏览 6 评论 0原文

我有一个需要几秒钟才能运行的应用程序。 是否可以在应用程序处理时使鼠标带有忙碌图标?

I have an application that takes a couple of seconds to run.
Is it possible to make the mouse with the busy icon while the app is processing?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(4

吃→可爱长大的 2024-09-02 12:00:15

使用 Cursor.WaitCursor 属性。

您可以使用:

Cursor.Current = Cursors.WaitCursor;

只要有一些
WinForms 中正在进行的处理
应用程序中,光标停留在
WaitCursor 状态。

您也可以使用您的自定义
设计的光标:

Cursor.Current = new Cursor("C:\\Cursors\\MyWait.cur");

来源:http:// bytes.com/topic/c-sharp/answers/238623-how-change-mouse-cursor-busy-state

Use Cursor.WaitCursor property.

You can use:

Cursor.Current = Cursors.WaitCursor;

and as long as there is some
processing going on in a WinForms
application, the cursor stays in the
WaitCursor state.

You can as well use your custom
designed cursors:

Cursor.Current = new Cursor("C:\\Cursors\\MyWait.cur");

source: http://bytes.com/topic/c-sharp/answers/238623-how-change-mouse-cursor-busy-state

享受孤独 2024-09-02 12:00:15

您需要设置表单的 UseWaitCursor< /code>属性设置为 true。 (记得在后面再次将其设置为 false ,最好是在 finally 块中)

您还可以设置 Application.UseWaitCursor 更改为 true 以应用它到每一种形式。

You need to set the form's UseWaitCursor property to true. (And remember to set it to false again afterwords, preferably in a finally block)

You can also set Application.UseWaitCursor to true to apply it to every form.

手长情犹 2024-09-02 12:00:15

我无法将我的答案作为评论添加到 SLaks 答案中,因此我将其作为答案发布

为了强制应用程序立即将光标设置为等待光标,您必须调用应用程序。设置Application.UseWaitCursor之后的DoEvents()方法,否则在漫长的过程完成后可能会发生变化

    Application.UseWaitCursor=true;
    Application.DoEvents();

I have no option to add my answer as a comment to SLaks answer, so i post it as an answer

In order to force application to set cursor to wait cursor at once, you have to call for Application.DoEvents() method after setting Application.UseWaitCursor, otherwise it might be changed after the lengthy process has been completed

    Application.UseWaitCursor=true;
    Application.DoEvents();
兔小萌 2024-09-02 12:00:15
Cursor.Current = Cursors.WaitCursor;

您将需要引用 System.Windows.Forms 来更改光标。

Cursor.Current = Cursors.WaitCursor;

You will need a reference to System.Windows.Forms to change the cursor.

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