findwindow详解_finddevicehasbeendestroyed啥意思

findwindow详解_finddevicehasbeendestroyed啥意思Normal07.8磅02falsefalsefalse…

大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。

Jetbrains全系列IDE使用 1年只要46元 售后保障 童叟无欺

Normal 0 7.8 磅 0 2 false false false MicrosoftInternetExplorer4
The FindWindow function retrieves a handle to the top-level window whose class name and window name match the 

specified strings. This function does not search child windows. This function does not perform a case-sensitive 

search.
FindWindow

函数根据给定的窗体类名称、窗体名称的字符串搜索父窗体并返回其窗体句柄。这个函数并不搜索子窗体。这个函数并不


完成一个事件感知的搜索。

To search child windows, beginning with a specified child window, use the FindWindowEx function.

要搜索给定窗体的子窗体,使用FindWindowEx
函数。

Syntax

语法

HWND FindWindow( 
 LPCTSTR lpClassName,
 LPCTSTR lpWindowName
);

Parameters

参数

lpClassName
[in] Pointer to a null-terminated string that specifies the class name or a class atom created by a previous call to 

the RegisterClass or RegisterClassEx function. The atom must be in the low-order word of lpClassName; the high-order 

word must be zero. 
[

输入]
一个以零作为终结符的字符串指针,给定窗体的类名称或由先前执行RegisterClass
RegisterClassEx
函数创建的类原子,类


原子的低位两个字节必须是lpClassName
参数,高位两个字节必须是零。

If lpClassName points to a string, it specifies the window class name. The class name can be any name registered 

with RegisterClass or RegisterClassEx, or any of the predefined control-class names. 

如果lpClassName
指针指向字符串,它就给定了窗体的类名称。类名称可以是RegisterClass
RegisterClassEx
注册的任意名称,或


者是任何预先定义好的控件类名称。

If lpClassName is NULL, it finds any window whose title matches the lpWindowName parameter. 

如果lpClassName
是空指针,函数将按照lpWindowName
参数搜索所有窗体。

lpWindowName
[in] Pointer to a null-terminated string that specifies the window name (the window’s title). If this parameter is 

NULL, all window names match. 
[

输入]
一个以零作为终结符的字符串指针,给定窗体名称(标题)。如果这个参数是空指针,函数搜索时将忽略窗体名称。

Return Value

函数返回值

If the function succeeds, the return value is a handle to the window that has the specified class name and window 

name.

如果函数执行成功,返回值是一个给定的窗体类名称和窗体名称的窗体句柄。

If the function fails, the return value is NULL. To get extended error information, call GetLastError. 

如果函数执行失败,返回值为零。执行GetLastError
函数获得更多的错误信息。

来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/25897606/viewspace-704443/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/25897606/viewspace-704443/

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/170227.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)


相关推荐

  • 秒杀多线程第四篇 一个经典的多线程同步问题

    秒杀多线程第四篇 一个经典的多线程同步问题

    2021年12月14日
  • msdos分区是什么_msdos_partition

    msdos分区是什么_msdos_partition硬盘分区及格式化本例要求熟悉硬盘分区结构,使用fdisk分区工具在磁盘/dev/vdb上按以下要求建立分区:采用默认的msdos分区模式1、第1个分区/dev/vdb1的大小为200MiB2、第2个分区/dev/vdb2的大小为2000MiB3、第3个分区/dev/vdb3的大小为1000MiB,完成分区后4、能够配置开机自动挂载/dev/vdb2分区…

  • android sqlite加密数据库,Android Sqlite数据库加密

    android sqlite加密数据库,Android Sqlite数据库加密Android使用的是开源的SQLite数据库,数据库本身没有加密,加密思路通常有两个:1.对几个关键的字段使用加密算法,再存入数据库2.对整个数据库进行加密SQLite数据库加密工具:收费工具:免费工具:SQLCipher使用:SQLCipher是完全开源的软件,提供256-bitAES加密源码编译:1.OpenSSL编译SQLCipher源码编译需要依赖OpenSSL提供的libcry…

  • fastjson教程 List转JSONArray以及JSONArray转List[通俗易懂]

    fastjson教程 List转JSONArray以及JSONArray转List[通俗易懂]1.fastjsonList转JSONArrayList<T>list=newArrayList<T>();JSONArrayarray=JSONArray.parseArray(JSON.toJSONString(list));2.fastjsonJSONArray转ListJSONArrayarray=newJSONArray();List<T>list=JSONObject.parseArray(array.toJSONSt..

  • docker基本操作命令_docker里面运行docker

    docker基本操作命令_docker里面运行docker一、Docker安装1、卸载Dockersudoyumremovedocker\docker-client\docker-client-latest\docker-common\docker-latest\docker-latest-logrotate\

  • C语言:判断回文字符串的两种简单方法

    C语言:判断回文字符串的两种简单方法我的机器学习教程「美团」算法工程师带你入门机器学习已经开始更新了,欢迎大家订阅~任何关于算法、编程、AI行业知识或博客内容的问题,可以随时扫码关注公众号「图灵的猫」,加入”学习小组“,沙雕博主在线答疑~此外,公众号内还有更多AI、算法、编程和大数据知识分享,以及免费的SSR节点和学习资料。其他平台(知乎/B站)也是同名「图灵的猫」,不要迷路哦~之前写…

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号