API之FindWindowEx和SendMessage

API之FindWindowEx和SendMessage最近在VC6.0开发中碰到了两个函数,经过一番搜索查阅,特记录于此。

大家好,又见面了,我是你们的朋友全栈君。

最近在VC6.0开发中碰到了两个函数,经过一番搜索查阅,特记录于此。

FindWindowEx

// The FindWindowEx function retrieves a handle to a window

// whose class name and window name match the specified strings.

// The function searches child windows, beginning with the one following

// the specified child window. This function does not perform a case-sensitive search.

// 翻译:该函数获取一个指定类名和窗口标题字符串(大小写不敏感)都匹配的子窗口的句柄。

//

// HWND FindWindowEx(

//  

 

 

  

 

 

  

 

 
HWND hwndParent, 

 

 

 

   

 // handle to parent window父窗口句柄,如果为NULL,则指
桌面

//            HWND hwndChildAfter,  // handle to child window直系子窗口该窗口和此函数要查
//找的窗口
即返回的结果窗口是兄弟关系
//  


 

 

  

 

 

  

 

 
LPCTSTR lpszClass, 

 

 

      // class name类名,编辑框为EDIT,组合框为COMBOBOX等

//  

 

 

  

 

 

  

 

 
LPCTSTR lpszWindow 

 

 

 // window name标题名字字符串


//  

 )

CBN_SELCHANGE 

利用SendMessage向指定的组合框发送消息,
直接引用MSDN中关于CBN_SELCHANGE的描述:

The CBN_SELCHANGE notification message is sent when the user changes the current selection in the list box of a combo box. The user can change the selection by clicking in the list box or by using the arrow keys. The parent window of the combo box receives this notification in the form of a WM_COMMAND message with CBN_SELCHANGE in the high-order word of the
wParam
parameter.

CBN_SELCHANGE
idComboBox = (int) LOWORD(wParam); // identifier of combo box 
hwndComboBox = (HWND) lParam; // handle to combo box 

To get the index of the current selection, send the CB_GETCURSEL message to the control.
The CBN_SELCHANGE notification message is not sent when the current selection is set using the CB_SETCURSEL  message. 

也就是说,需要先发送CB_SETCURSEL消息后,再发送CBN_SELCHANGE消息才能响应事件,举例如下:
::SendMessage(hwndCombo, CB_SETCURSEL, 1, 0);
int id = ::GetDlgCtrlID(hwndCombo);
::SendMessage(hwndDialog, WM_COMMAND, MAKEWPARAM(id, CBN_SELCHANGE), (LPARAM)hwndCombo);
注意第二次发送消息时,第一个参数hwndDialog是父窗口的句柄,与组合框的句柄要区别开来,第三个参数用到了MAKEWPARM函数

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

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

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

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

(0)


相关推荐

发表回复

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

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