MFC子父窗口发送消息

1. 插入新对话框,并建立新类,注意Base Class要选CDialog;

 

2. 在新生成类的.cpp文件中,include主对话框的头文件:

#include "PCRProjectDlg.h"       // 主窗口类的头文件

 

3. 在父窗口的.h文件中,

3.1 include子窗口的头文件:

#include "ParsaveDlg.h"        // 新添加窗口类的头文件

3.2增加定义:

#define WM_ParsaveDlg_event  WM_USER + 106

3.3在父窗口的class声明中添加消息处理函数声明:

protected:

afx_msg LRESULT OnParsaveDlg(WPARAM wParam, LPARAM iParam);

两个参数:WPARAM wParam, LPARAM lParam类型不能更改。

 

4. 在父窗口的.cpp文件中增加消息映射部分:

ON_MESSAGE(WM_ParsaveDlg_event,OnParsaveDlg)

注意,此句没有分号

 

5. 在父窗口的.cpp文件中添加消息处理函数:

LRESULT CPCRProjectDlg::OnParsaveDlg(WPARAM wParam, LPARAM iParam)
{
 if (sFileName != "")
 {
  sBuilderName += (":" + sSave);
  CFile m_statusFile(sFileName,CFile::modeCreate|CFile::modeWrite);
  m_statusFile.Write(sSave,sSave.GetLength());
 }
 else
  AfxMessageBox("Please fill the filename");

 return 0;
}

 

6. 在子窗口要发送消息的部分添加如下代码:

void CParsaveDlg::OnBnClickedOk()
{
 // TODO: Add your control notification handler code here
// CDialog::OnOK();

 sBuilderName.Empty();
 sFileName.Empty();
 GetDlgItemTextA(IDC_EDIT_PARSAVE_NAME,sBuilderName);
 GetDlgItemTextA(IDC_EDIT_PARSAVE_FILENAME,sFileName);

 WPARAM a=8;
 LPARAM b=9;
 HWND hWnd = AfxGetApp()->GetMainWnd()->GetSafeHwnd();
 ::SendMessage(hWnd,WM_ParsaveDlg_event,a,b);

 CDialog::OnOK();
}

 

 

 

 

 

你可能感兴趣的:(MFC子父窗口发送消息)