如何获取当前的GLOBAL鼠标光标类型(沙漏/箭头/ ..)?在Windows中。
全球 - 我需要它即使鼠标在我的应用程序之外,或者即使我的程序是无风的。
在C#,Delphi或纯winapi中,没关系......
非常感谢你!!
答案 0 :(得分:5)
要获取有关全局光标的信息,请使用GetCursorInfo。
答案 1 :(得分:5)
经过多年的时间回答我自己的问题。以下是检查C#中当前全局光标是否为沙漏的方法(如果需要,可以根据自己的需要扩展代码):
private static bool IsWaitCursor()
{
var h = Cursors.WaitCursor.Handle;
CURSORINFO pci;
pci.cbSize = Marshal.SizeOf(typeof(CURSORINFO));
GetCursorInfo(out pci);
return pci.hCursor == h;
}
[StructLayout(LayoutKind.Sequential)]
struct POINT
{
public Int32 x;
public Int32 y;
}
[StructLayout(LayoutKind.Sequential)]
struct CURSORINFO
{
public Int32 cbSize; // Specifies the size, in bytes, of the structure.
// The caller must set this to Marshal.SizeOf(typeof(CURSORINFO)).
public Int32 flags; // Specifies the cursor state. This parameter can be one of the following values:
// 0 The cursor is hidden.
// CURSOR_SHOWING The cursor is showing.
public IntPtr hCursor; // Handle to the cursor.
public POINT ptScreenPos; // A POINT structure that receives the screen coordinates of the cursor.
}
[DllImport("user32.dll")]
static extern bool GetCursorInfo(out CURSORINFO pci);
答案 2 :(得分:4)
使用(在Delphi中)
Screen.MouseCursor.
对于当前鼠标光标。
General Win32(user32)给出:
function GetCursor: HCURSOR; stdcall;
这应该适用于其他win32语言。
答案 3 :(得分:3)
OEM游标是共享资源,因此请求特定游标的所有进程都将检索相同的句柄。应用程序可以在启动时缓存标准系统游标句柄,然后它可以使用GetCursorInfo来获取全局游标句柄,并在缓存中查找此句柄以检索其种类 - 如果它是系统光标。
以下Delphi示例代码演示。在表单创建时使用LoadImage将光标句柄填充到数组中。计时器定期使用GetCursorInfo轮询全局游标,代码查找数组中的句柄以从常量名称数组中检索游标名称:
const
HighCursor = 13;
type
TForm1 = class(TForm)
Timer1: TTimer;
Label1: TLabel;
procedure FormCreate(Sender: TObject);
procedure Timer1Timer(Sender: TObject);
private
FCursorHandles: array [0..HighCursor] of HCURSOR;
public
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
const
OEMCursors: array [0..HighCursor] of Integer = (OCR_NORMAL, OCR_IBEAM,
OCR_WAIT, OCR_CROSS, OCR_UP, OCR_SIZENWSE, OCR_SIZENESW, OCR_SIZEWE,
OCR_SIZENS, OCR_SIZEALL, OCR_NO, OCR_HAND, OCR_APPSTARTING,
32651 {OCR_HELP?});
CursorNames: array [0..HighCursor] of string = ('OCR_NORMAL', 'OCR_IBEAM',
'OCR_WAIT', 'OCR_CROSS', 'OCR_UP', 'OCR_SIZENWSE', 'OCR_SIZENESW',
'OCR_SIZEWE', 'OCR_SIZENS', 'OCR_SIZEALL', 'OCR_NO', 'OCR_HAND',
'OCR_APPSTARTING', 'OCR_HELP');
procedure TForm1.FormCreate(Sender: TObject);
var
i: Integer;
begin
for i := 0 to HighCursor do
FCursorHandles[i] := LoadImage(0, MakeIntResource(OEMCursors[i]),
IMAGE_CURSOR, 0, 0, LR_DEFAULTCOLOR or LR_DEFAULTSIZE or LR_SHARED);
end;
procedure TForm1.Timer1Timer(Sender: TObject);
function GetCursorName(Cursor: HCURSOR): string;
var
i: Integer;
begin
for i := 0 to HighCursor do
if Cursor = FCursorHandles[i] then begin
Result := CursorNames[i];
Exit;
end;
Result := 'Unknown Cursor'; // A custom cursor.
end;
var
CursorInfo: TCursorInfo;
begin
CursorInfo.cbSize := SizeOf(CursorInfo);
if GetCursorInfo(CursorInfo) then
Label1.Caption := GetCursorName(CursorInfo.hCursor)
else
Label1.Caption := 'Fail: ' + SysErrorMessage(GetLastError);
end;
请注意,使用Delphi时,不必缓存游标句柄,因为Delphi通过其Screen.Cursors列表执行此操作。示例代码不会使用它来提高可移植性。
另请注意'winuser.h'中没有'OCR_HELP',但是提供的常量对应'IDC_HELP'似乎工作正常(虽然我在W7中找不到使用“帮助选择”的对话框“光标”。
答案 4 :(得分:0)
编辑:在Delphi中
在大多数可视对象中,您可以使用 Cursor 属性,否则使用 Screen.Cursor 属性。 将其设置回 crDefault 会将您的更改取消为以前设置的更改。