Cursor.Current 属性

定义

获取或设置代表鼠标光标的光标对象。

public:
 static property System::Windows::Forms::Cursor ^ Current { System::Windows::Forms::Cursor ^ get(); void set(System::Windows::Forms::Cursor ^ value); };
public static System.Windows.Forms.Cursor Current { get; set; }
public static System.Windows.Forms.Cursor? Current { get; set; }
member this.Current : System.Windows.Forms.Cursor with get, set
Public Shared Property Current As Cursor

属性值

Cursor

一个 Cursor,代表鼠标光标。 如果鼠标光标不可见,则默认为 null

注解

设置属性会 Current 更改当前显示的游标。 应用程序可能或可能不会继续侦听鼠标事件。 若要指示应用程序在长时间运行的操作期间不应响应鼠标事件,请使用该 UseWaitCursor 属性。 但是,在大多数情况下,最好使用后台线程来管理长时间运行的操作,并使用户界面可供用户访问。 有关轻松实现后台任务的详细信息,请参阅 BackgroundWorker

适用于

另请参阅