资源简介
基于对话框的mfc应用程序,在一个对话框a的按钮上生成另一个对话框b,在b上点击按钮调用a中的按钮的消息响应函数。
代码片段和文件信息
// DialogB.cpp : 实现文件
//
#include “stdafx.h“
#include “Test.h“
#include “DialogB.h“
#include “TestDlg.h“
// CDialogB 对话框
IMPLEMENT_DYNAMIC(CDialogB CDialog)
CDialogB::CDialogB(CWnd* pParent /*=NULL*/)
: CDialog(CDialogB::IDD pParent)
{
}
CDialogB::~CDialogB()
{
}
void CDialogB::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
}
BEGIN_MESSAGE_MAP(CDialogB CDialog)
ON_BN_CLICKED(IDC_BUTTON1 &CDialogB::OnBnClickedButton1)
END_MESSAGE_MAP()
BOOL CDialogB::OnInitDialog()
{
CDialog::OnInitDialog();
// TODO: 在此添加额外的初始化
SetWindowText(“b“);
return TRUE; // return TRUE unless you set the focus to a control
// 异常: OCX 属性页应返回 FALSE
}
// CDialogB 消息处理程序
void CDialogB::OnBnClickedButton1()
{
if (CTestDlg::hwnd_a)
{
::SendMessage(CTestDlg::hwnd_aWM_MSG00);
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 163840 2014-08-13 20:22 Test\debug\Test.exe
文件 9794 2014-08-13 20:22 Test\Test\Debug\BuildLog.htm
文件 22824 2014-08-13 20:22 Test\Test\Debug\DialogB.obj
文件 65 2014-08-13 20:22 Test\Test\Debug\mt.dep
文件 335914 2014-08-13 20:22 Test\Test\Debug\stdafx.obj
文件 660 2014-08-13 20:22 Test\Test\Debug\Test.exe.em
文件 724 2014-08-13 20:22 Test\Test\Debug\Test.exe.em
文件 625 2014-08-13 20:22 Test\Test\Debug\Test.exe.intermediate.manifest
文件 19993 2014-08-13 20:22 Test\Test\Debug\Test.obj
文件 13697024 2014-08-13 20:22 Test\Test\Debug\Test.pch
文件 23420 2014-08-13 20:22 Test\Test\Debug\Test.res
文件 41517 2014-08-13 20:22 Test\Test\Debug\TestDlg.obj
文件 707584 2014-08-13 20:22 Test\Test\Debug\vc80.idb
文件 692224 2014-08-13 20:22 Test\Test\Debug\vc80.pdb
文件 898 2014-08-13 20:21 Test\Test\DialogB.cpp
文件 437 2014-08-13 20:21 Test\Test\DialogB.h
文件 2837 2014-08-13 20:03 Test\Test\ReadMe.txt
文件 21630 2005-11-11 22:45 Test\Test\res\Test.ico
文件 360 2014-08-13 20:03 Test\Test\res\Test.rc2
文件 865 2014-08-13 20:13 Test\Test\Resource.h
文件 135 2014-08-13 20:03 Test\Test\stdafx.cpp
文件 2489 2014-08-13 20:03 Test\Test\stdafx.h
文件 42864 2014-08-13 20:13 Test\Test\Test.aps
文件 1623 2014-08-13 20:03 Test\Test\Test.cpp
文件 429 2014-08-13 20:03 Test\Test\Test.h
文件 5406 2014-08-13 20:08 Test\Test\Test.rc
文件 5567 2014-08-13 20:15 Test\Test\Test.vcproj
文件 1409 2014-08-13 20:22 Test\Test\Test.vcproj.mh2-PC.mh2.user
文件 3601 2014-08-13 20:20 Test\Test\TestDlg.cpp
文件 731 2014-08-13 20:15 Test\Test\TestDlg.h
............此处省略10个文件信息
评论
共有 条评论