Win32获取屏幕句柄的函数是什么?
发布网友
发布时间:2022-05-06 08:24
我来回答
共2个回答
热心网友
时间:2022-06-29 03:00
获取桌面句柄:HWND GetDesktopWindow(VOID)
该函数返回桌面窗口的句柄。桌面窗口覆盖整个屏幕。桌面窗口是一个要在其上绘制所有的图标和其他窗口的区域。
函数原型:HWND GetDesktopWindow(VOID)
参数:无。
返回值:函数返回桌面窗口的句柄。
声明:
vb
Public Declare Function GetDesktopWindow Lib "user32" Alias "GetDesktopWindow" () As Long
vb_net
Public Declare Function GetDesktopWindow Lib "user32" Alias "GetDesktopWindow" () As Integer
c#
[DllImport("user32", EntryPoint="GetDesktopWindow")]
public static extern int GetDesktopWindow (
ref
);
说明】
获得代表整个屏幕的一个窗口(桌面窗口)句柄【返回值】
Long,桌面窗口的句柄
【参数表】
所有桌面图标都在这个窗口里拒绝。它也用于各类屏幕保护程序
热心网友
时间:2022-06-29 03:01
获取桌面句柄:HWND GetDesktopWindow(VOID);
获取屏幕DC:HDC GetWindowDC(NULL);
你想要的是哪个呢,屏幕是没有句柄的,句柄是窗口才有的,想在屏幕上画图,可以用屏幕DC追问大哥 怎么我的小球在屏幕移动会有痕迹出现?
HWND hWndc=GetDesktopWindow(VOID);//为什么这个报错')' ?
RECT rect={0};
GetWindowRect( hWndc, &rect );
追答报什么错,把错误说明发出来,有痕迹是没有清除上次画的痕迹