📄 viewoutother.cpp
字号:
// ViewOutOther.cpp : 实现文件
//
#include "stdafx.h"
#include "HomeManage.h"
#include "MainFrm.h"
#include "ViewOutOther.h"
// CViewOutOther
IMPLEMENT_DYNCREATE(CViewOutOther, CFormView)
CViewOutOther::CViewOutOther()
: CFormView(CViewOutOther::IDD)
{
}
CViewOutOther::~CViewOutOther()
{
}
void CViewOutOther::DoDataExchange(CDataExchange* pDX)
{
CFormView::DoDataExchange(pDX);
}
BEGIN_MESSAGE_MAP(CViewOutOther, CFormView)
ON_WM_DESTROY()
END_MESSAGE_MAP()
// CViewOutOther 诊断
#ifdef _DEBUG
void CViewOutOther::AssertValid() const
{
CFormView::AssertValid();
}
#ifndef _WIN32_WCE
void CViewOutOther::Dump(CDumpContext& dc) const
{
CFormView::Dump(dc);
}
#endif
#endif //_DEBUG
// CViewOutOther 消息处理程序
void CViewOutOther::OnInitialUpdate()
{
CFormView::OnInitialUpdate();
GetParentFrame()->SetWindowText("其它支出");
}
void CViewOutOther::OnDestroy()
{
CFormView::OnDestroy();
((CMainFrame*)AfxGetMainWnd())->m_outother=NULL; // 清空窗口指针
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -