API窗口函数(delphi)

上传:msefswqhte 浏览: 39 推荐: 0 文件:DOC 大小:127.5KB 上传时间:2018-12-31 13:21:31 版权申诉
API窗口函数(delphi) WinAPI: GetDesktopWindow - 返回桌面窗口的句柄 //声明: GetDesktopWindow: HWND; {无参数; 返回桌面窗口的句柄} ________________________________________ //举例: var h: HWND; begin h := GetDesktopWindow; ShowMessage(IntToStr(h)); end; ________________________________________ WinAPI: SetWindowText - 设置窗口标题 //声明: SetWindowText( hWnd: HWND; {窗口句柄} lpString: PChar {新标题串指针} ): BOOL; .......
上传资源
用户评论

jiaxin89086 2018-12-31 13:21:33

不错,很好理解

afeijiadami 2018-12-31 13:21:33

都是常用的函数,还有简短事例,不错。