mystatusbarctrl.cpp
来自「VC6 多线程的串口操作」· C++ 代码 · 共 42 行
CPP
42 行
// MyStatusBarCtrl.cpp : implementation file
//
#include "stdafx.h"
#include "Terminal.h"
#include "MyStatusBarCtrl.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CMyStatusBarCtrl
CMyStatusBarCtrl::CMyStatusBarCtrl()
{
}
CMyStatusBarCtrl::~CMyStatusBarCtrl()
{
}
BEGIN_MESSAGE_MAP(CMyStatusBarCtrl, CStatusBarCtrl)
//{{AFX_MSG_MAP(CMyStatusBarCtrl)
ON_WM_SIZE()
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CMyStatusBarCtrl message handlers
void CMyStatusBarCtrl::OnSize(UINT nType, int cx, int cy)
{
CStatusBarCtrl::OnSize(nType, cx, cy);
// TODO: Add your message handler code here
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?