释放设备环境
#Include <WinAPI.au3>
_WinAPI_ReleaseDC($hWnd, $hDC)
$hWnd | 窗口句柄 |
$hDC | 设备环境的标识 |
成功: | 返回 True |
失败: | 返回 False |
在MSDN中搜索
#include <WinAPI.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