• 大小: 11.67MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-08-04
  • 语言: 其他
  • 标签: mfc  

资源简介

在子窗口中调用父窗口的成员函数的方法 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\wmpplayer4.obj

     文件       4971  2009-05-30 14:18  IndepentList\Debug\wmpplayerapplication.obj

     文件      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个文件信息

评论

共有 条评论