customtoolbarstatusmessagechildwnd.cpp

来自「在工具栏添加自定义状态栏消息和提示」· C++ 代码 · 共 40 行

CPP
40
字号
// CustomToolBarStatusMessageChildWnd.cpp : implementation file
//

#include "stdafx.h"
#include "AddCustomMessageToToolBar.h"
#include "CustomToolBarStatusMessageChildWnd.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CCustomToolBarStatusMessageChildWnd

IMPLEMENT_DYNCREATE(CCustomToolBarStatusMessageChildWnd, CMDIChildWnd)

CCustomToolBarStatusMessageChildWnd::CCustomToolBarStatusMessageChildWnd()
{
}

CCustomToolBarStatusMessageChildWnd::~CCustomToolBarStatusMessageChildWnd()
{
}


BEGIN_MESSAGE_MAP(CCustomToolBarStatusMessageChildWnd, CMDIChildWnd)
	//{{AFX_MSG_MAP(CCustomToolBarStatusMessageChildWnd)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CCustomToolBarStatusMessageChildWnd message handlers


#define _countof(array) (sizeof(array)/sizeof(array[0]))


⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?