什么是the window's title(50分)

  • 主题发起人 主题发起人 入门
  • 开始时间 开始时间

入门

Unregistered / Unconfirmed
GUEST, unregistred user!
(The FindWindow function retrieves the handle to the top-level window whose class name and window name match the specified strings. This function does not search child windows.

HWND FindWindow(

LPCTSTR lpClassName, // pointer to class name
LPCTSTR lpWindowName // pointer to window name
);


Parameters

lpClassName

Points to a null-terminated string that specifies the class name or is an atom that identifies the class-name string. If this parameter is an atom, it must be a global atom created by a previous call to the GlobalAddAtom function. The atom, a 16-bit value, must be placed in the low-order word of lpClassName; the high-order word must be zero.

lpWindowName

Points to a null-terminated string that specifies the window name (the window's title). If this parameter is NULL, all window names match.)

此为findwindow的帮助文件,其中lpWindowName为specifies the window name (the window's title),但什么是the window's title???
 
一般为Window类控件的text属性,在不同的控件中表现为属性名不同,如form中的
caption,edit,memo中的text....

findwindow(0,'我的电脑')
本论坛中有很多这样的实例,用findwindow搜索一下。
 
Title就是指窗口的标题啦!
例如浏览本页的时候,我的浏览器的窗口Title就是:“显示问题 - Microsoft Internet Explorer"

对于没有标题栏的窗口,Title一般就是窗口中显示的Text文字
 
如果你对Windows编程熟悉的话应该知道什么是窗口类和窗口标题,所有的信息都在
窗口类的定义之中。
对于一般的窗口只需要使用窗口的标题即可,而对于那些窗口标题变化的窗口,就
需要使用窗口类了。窗口类就象Delphi的TFrom1的概念。
有许多工具可以查询窗口的类名,Delphi下就有WinSight32

希望你能满意我的回答
 
就是form的caption属性
用delphi里带的winSight32可以看系统里每个窗口
的标题。
 
都那么详细了,还不满足么
 
多谢各位打下!
 

Similar threads

A
回复
0
查看
1K
Andreas Hausladen
A
A
回复
0
查看
949
Andreas Hausladen
A
A
回复
0
查看
831
Andreas Hausladen
A
A
回复
0
查看
982
Andreas Hausladen
A
后退
顶部