|
// MainFrm.cpp: CMainFrame 类的实现
|
//
|
|
#include "pch.h"
|
#include "framework.h"
|
#include "MFCApplication3.h"
|
|
#include "MainFrm.h"
|
|
#ifdef _DEBUG
|
#define new DEBUG_NEW
|
#endif
|
|
// CMainFrame
|
|
IMPLEMENT_DYNAMIC(CMainFrame, CMDIFrameWnd)
|
|
BEGIN_MESSAGE_MAP(CMainFrame, CMDIFrameWnd)
|
ON_WM_CREATE()
|
END_MESSAGE_MAP()
|
|
static UINT indicators[] =
|
{
|
ID_SEPARATOR, // 状态行指示器
|
ID_INDICATOR_CAPS,
|
ID_INDICATOR_NUM,
|
ID_INDICATOR_SCRL,
|
};
|
|
// CMainFrame 构造/析构
|
|
CMainFrame::CMainFrame() noexcept
|
{
|
// TODO: 在此添加成员初始化代码
|
}
|
|
CMainFrame::~CMainFrame()
|
{
|
}
|
|
int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
|
{
|
if (CMDIFrameWnd::OnCreate(lpCreateStruct) == -1)
|
return -1;
|
|
if (!m_wndStatusBar.Create(this))
|
{
|
TRACE0("未能创建状态栏\n");
|
return -1; // 未能创建
|
}
|
m_wndStatusBar.SetIndicators(indicators, sizeof(indicators)/sizeof(UINT));
|
|
return 0;
|
}
|
|
BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
|
{
|
if( !CMDIFrameWnd::PreCreateWindow(cs) )
|
return FALSE;
|
// TODO: 在此处通过修改
|
// CREATESTRUCT cs 来修改窗口类或样式
|
|
return TRUE;
|
}
|
|
// CMainFrame 诊断
|
|
#ifdef _DEBUG
|
void CMainFrame::AssertValid() const
|
{
|
CMDIFrameWnd::AssertValid();
|
}
|
|
void CMainFrame::Dump(CDumpContext& dc) const
|
{
|
CMDIFrameWnd::Dump(dc);
|
}
|
#endif //_DEBUG
|
|
|
// CMainFrame 消息处理程序
|
|