欢迎来到代码驿站!

.NET代码

当前位置:首页 > 软件编程 > .NET代码

利用多线程句柄设置鼠标忙碌状态的实现方法

时间:2022-12-01 10:56:32|栏目:.NET代码|点击:

当我们在读取数据的时候,或者处理大量数据的时候可能需要把鼠标设置为忙碌状态,等待返回结果。下面的代码可以帮忙实现这点:

复制代码 代码如下:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Threading;

namespace CursorThread
{
    public partial class Form1 : Form
    {
        public delegate int DoSomethingDelegate(int data);

        public Form1()
        {
            InitializeComponent();
        }

        static int DoSomething(int data)
        {
            /// <sumary>
            /// Do something in this method
            /// </sumary>
            Thread.Sleep(300);
            return data++;

        }

        private void button1_Click(object sender, EventArgs e)
        {
            this.Cursor = Cursors.Default;

            DoSomethingDelegate d = DoSomething;
            IAsyncResult ar = d.BeginInvoke(100,null, null);

            while (true)
            {
                this.Cursor = Cursors.WaitCursor;
                if(ar.AsyncWaitHandle.WaitOne(50, false))
                {
                    this.Cursor = Cursors.Arrow;
                    break;
                }
            }

            //Get the result
            int result = d.EndInvoke(ar);
            MessageBox.Show(result.ToString());

        }
    }
}


这样在点击鼠标后,鼠标会变成忙碌状态一直等待DoSomething这个方法调用结束,然后变回箭头状态。

当然你也可以这样:

复制代码 代码如下:

// Set the status of the cursor
this.Cursor = Cursor.Busy;

// Do Something

// Set the status of the cursor
this.Cursor = Cursor.Arrow;


如果是在方法里面调用的话,不能使用this关键字,那你可以这样做:
复制代码 代码如下:

private void Method()
{   
         Curosor.Current = Cursor.WaitCursor;

         /// Do Something

         Cursor.Current = Cursor.Arrow;
}

上一篇:MAUI项目中使用SnackBar与Toast通知功能

栏    目:.NET代码

下一篇:WPF布局及布局容器介绍

本文标题:利用多线程句柄设置鼠标忙碌状态的实现方法

本文地址:http://www.codeinn.net/misctech/220314.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有