资源简介
在子窗口中调用父窗口的成员函数的方法
1、用FindWindow("类名(可以是派生类)","窗口标题")或GetParent(),二者均能返回父窗口句柄,并能直接使用其成员函数。但是此法只能调用CWnd类里的成员函数,而不能调用自己创建的派生类中的函数。
2、在子窗口的初始化函数里加上父窗口的指针 ,然后在子窗口的类中使用全局变量保存父窗口的指针。如:
父窗口类为CMyDlg(父类为CDialog),子窗口类为CMySon(父类为CDialog),则在CMyDlg::OnInitDialog()中初始化子窗口对象m_myson=new CMySon(this);(m_myson为在父窗口中声明的成员),然后在MySon.cpp中的开始处声明全局变量CMyDlg *parent;(在MySon.h中要加入MyDlg.h头文件),最后在CMySon的构造函数中定义parent=(CMyDlg*)pParent;
好了,现在你可以在子窗口中随时调用父窗口函数了!
代码片段和文件信息
// IndepentList.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “IndepentList.h“
#include “IndepentListDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CIndepentListApp
BEGIN_MESSAGE_MAP(CIndepentListApp CWinApp)
//{{AFX_MSG_MAP(CIndepentListApp)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG
ON_COMMAND(ID_HELP CWinApp::onhelp)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CIndepentListApp construction
CIndepentListApp::CIndepentListApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CIndepentListApp object
CIndepentListApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CIndepentListApp initialization
BOOL CIndepentListApp::InitInstance()
{
AfxEnableControlContainer();
// Standard initialization
// If you are not using these features and wish to reduce the size
// of your final executable you should remove from the following
// the specific initialization routines you do not need.
#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif
CIndepentListDlg dlg;
m_pMainWnd = &dlg;
int nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: Place code here to handle when the dialog is
// dismissed with OK
}
else if (nResponse == IDCANCEL)
{
// TODO: Place code here to handle when the dialog is
// dismissed with Cancel
}
// Since the dialog has been closed return FALSE so that we exit the
// application rather than start the application‘s message pump.
return FALSE;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 143464 2009-05-30 15:08 IndepentList\Debug\IndepentList.exe
文件 312040 2009-05-30 15:08 IndepentList\Debug\IndepentList.ilk
文件 15681 2009-05-30 14:19 IndepentList\Debug\IndepentList.obj
文件 5502076 2009-05-30 14:18 IndepentList\Debug\IndepentList.pch
文件 541696 2009-05-30 15:08 IndepentList\Debug\IndepentList.pdb
文件 2696 2009-05-30 14:43 IndepentList\Debug\IndepentList.res
文件 28933 2009-05-30 14:45 IndepentList\Debug\IndepentListDlg.obj
文件 18070 2009-05-30 15:08 IndepentList\Debug\MyList.obj
文件 106002 2009-05-30 14:18 IndepentList\Debug\StdAfx.obj
文件 238592 2009-05-30 15:08 IndepentList\Debug\vc60.idb
文件 372736 2009-05-30 15:08 IndepentList\Debug\vc60.pdb
文件 6649 2009-05-30 14:18 IndepentList\Debug\wmpcdrom.obj
文件 5743 2009-05-30 14:18 IndepentList\Debug\wmpcdromcollection.obj
文件 13421 2009-05-30 14:18 IndepentList\Debug\wmpclosedcaption.obj
文件 15291 2009-05-30 14:18 IndepentList\Debug\wmpcontrols.obj
文件 7490 2009-05-30 14:18 IndepentList\Debug\wmpdvd.obj
文件 5992 2009-05-30 14:18 IndepentList\Debug\wmperror.obj
文件 8386 2009-05-30 14:18 IndepentList\Debug\wmperroritem.obj
文件 23875 2009-05-30 14:18 IndepentList\Debug\wmpmedia.obj
文件 15046 2009-05-30 14:18 IndepentList\Debug\wmpmediacollection.obj
文件 25746 2009-05-30 14:18 IndepentList\Debug\wmpnetwork.obj
文件 54658 2009-05-30 14:18 IndepentList\Debug\wmppla
文件 4971 2009-05-30 14:18 IndepentList\Debug\wmppla
文件 17304 2009-05-30 14:18 IndepentList\Debug\wmpplaylist.obj
文件 4748 2009-05-30 14:18 IndepentList\Debug\wmpplaylistarray.obj
文件 10013 2009-05-30 14:18 IndepentList\Debug\wmpplaylistcollection.obj
文件 20729 2009-05-30 14:18 IndepentList\Debug\wmpsettings.obj
文件 5342 2009-05-30 14:18 IndepentList\Debug\wmpstringcollection.obj
文件 35688 2009-05-30 14:43 IndepentList\IndepentList.aps
文件 1216 2009-05-30 15:08 IndepentList\IndepentList.clw
............此处省略62个文件信息
相关资源
- BCGControlBarPro v22.1正式版源代码、
- 编写一个Windows应用程序,要求在窗口
- 动态绘制圆弧
- 面向对象程序设计课程设计-图书管理
- btree.zip实现二叉树的可视化处理,很
-
VlcPla
yerCsdn---vlc的配置 - 数据结构课程设计红黑树源码
- BCGControlBar 英文说明文档 28版本
- 等角斜方位投影.rar
- vs2010串口发送接收程序
- Iocomp v4.02全破解版.rar
- 实现二叉树的可视化处理,很好的源
- 获取屏幕上任意一点的RGB值
- 最简单的基于libVLC的
- List Control动态修改编辑Demo
- IP包捕获与解析
- 两个基于winpcap开发的网络抓包分析工
- 基于windows的蓝牙通信
- amCap工具源码
- 远程控制桌面源码
- 记事本开发
- 质子交换膜燃料电池系统建模及其控
- OpenDDS Demo
- 人工智能求解怪兽世界游戏
- 用openCV实现图片的放大缩小、图片旋
- 串口调试助手源代码详细中文注释
- 网蜂ZigBee无线通讯上位机部分vs2013
- 协议分析器程序
- GDI+使用PNG图片打造异型窗口
- 拼图程序_通过GDI实现图片切割、位移
评论
共有 条评论