函数参考


_WinAPI_ReleaseDC

释放设备环境

#Include <WinAPI.au3>
_WinAPI_ReleaseDC($hWnd, $hDC)

参数

$hWnd 窗口句柄
$hDC 设备环境的标识

返回值

成功: 返回 True
失败: 返回 False

注意/说明

 应用程序必须为每个调用 _WinAPI_GetWindowDC 函数的操作调用 _WinAPI_ReleaseDC 函数,
 并为每个操作调用 _WinAPI_GetDC 函数检索设备环境

相关

_WinAPI_GetDC, _WinAPI_GetWindowDC, _WinAPI_DeleteDC

详情参考

在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