⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 childfrm.h

📁 可以用于.net2005或.net2003中的vc调试
💻 H
字号:
/*----------------------------------------------------------------------
"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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -