HMXChildFrame.cpp
上传用户:yinguanfa
上传日期:2022-02-19
资源大小:400k
文件大小:1k
源码类别:

ListView/ListBox

开发平台:

Visual C++

  1. // HMXChildFrame.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "HMXChildFrame.h"
  5. #ifdef _DEBUG
  6. #define new DEBUG_NEW
  7. #undef THIS_FILE
  8. static char THIS_FILE[] = __FILE__;
  9. #endif
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CHMXChildFrame
  12. IMPLEMENT_DYNCREATE(CHMXChildFrame, CMDIChildWnd)
  13. CHMXChildFrame::CHMXChildFrame()
  14. {
  15. }
  16. CHMXChildFrame::~CHMXChildFrame()
  17. {
  18. }
  19. BEGIN_MESSAGE_MAP(CHMXChildFrame, CMDIChildWnd)
  20. //{{AFX_MSG_MAP(CHMXChildFrame)
  21. //}}AFX_MSG_MAP
  22. END_MESSAGE_MAP()
  23. /////////////////////////////////////////////////////////////////////////////
  24. // CHMXChildFrame message handlers
  25. BOOL CHMXChildFrame::PreCreateWindow(CREATESTRUCT& cs) 
  26. {
  27. // TODO: Add your specialized code here and/or call the base class
  28. cs.style = WS_CHILD; // set the right child aspect & behaviour
  29. if( !CMDIChildWnd::PreCreateWindow(cs) )
  30. return FALSE;
  31. return TRUE;
  32. }