美文网首页📙Go语言:进阶大全
Go语言:获取指定标题程序的句柄

Go语言:获取指定标题程序的句柄

作者: 白祤星 | 来源:发表于2019-10-24 05:12 被阅读0次

    代码实例:


    package main
    
    import (
        "syscall"
    
        "github.com/lxn/win"
    )
    
    func main() {
        println(FindWindow(`QQ`))
    }
    
    func FindWindow(str string) win.HWND {
        return win.FindWindow(nil, syscall.StringToUTF16Ptr(str))
    }
    

    相关文章

      网友评论

        本文标题:Go语言:获取指定标题程序的句柄

        本文链接:https://www.haomeiwen.com/subject/dholvctx.html