检索显示客户区窗口的设备环境句柄
#Include <WinAPI.au3>
_WinAPI_GetDC($hWnd)
$hWnd | 窗口句柄 |
成功: | 返回显示窗口客户区的设备环境句柄 |
失败: | 返回 0 |
在MSDN中搜索
#include <WinAPI.au3>
#include <WindowsConstants.au3>
_Main()
Func _Main()
Local $hwnd, $hDC
$hwnd = GUICreate("test")
$hDC = _WinAPI_GetDC($hwnd)
MsgBox(4096, "Handle", "Display Device: " & $hDC)
_WinAPI_ReleaseDC($hwnd, $hDC)
EndFunc ;==>_Main