childfrm.h
来自「可以用于.net2005或.net2003中的vc调试」· C头文件 代码 · 共 74 行
H
74 行
/*----------------------------------------------------------------------
"Debugging Applications" (Microsoft Press)
Copyright (c) 1997-2000 John Robbins -- All rights reserved.
With excellent updates from Scott Bloom, Ching Ming Kwok,
Jeff Shanholtz, and Pablo Presedo!
----------------------------------------------------------------------*/
#if !defined ( _CHILDFRM_H )
#define _CHILDFRM_H
#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000
class CChildFrame : public CMDIChildWnd
{
//lint -e1511
DECLARE_DYNCREATE ( CChildFrame )
//lint +e1511
public :
CChildFrame ( ) ;
// Attributes
public :
// Operations
public :
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CChildFrame)
virtual BOOL PreCreateWindow ( CREATESTRUCT & cs ) ;
//}}AFX_VIRTUAL
// Implementation
public :
virtual ~CChildFrame ( ) ;
#ifdef _DEBUG
virtual void AssertValid ( ) const ;
virtual void Dump ( CDumpContext & dc ) const ;
#endif
virtual void ActivateFrame ( int nCmdShow = -1 ) ;
virtual void OnSize ( UINT nType , int cx , int cy ) ;
// Generated message map functions
protected :
virtual BOOL OnCreateClient ( LPCREATESTRUCT lpcs ,
CCreateContext * pContext ) ;
//{{AFX_MSG(CChildFrame)
afx_msg void OnGetMinMaxInfo(MINMAXINFO FAR* lpMMI);
//}}AFX_MSG
DECLARE_MESSAGE_MAP ( )
private :
// The static splitter handler.
CSplitterWnd m_wndSplitter ;
BOOL m_bActivated ;
BOOL m_bSplitterCreated ;
} ;
//{{AFX_INSERT_LOCATION}}
#endif // _CHILDFRM_H
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?