framewnd.cpp

来自「3D reconstruction, medical image process」· C++ 代码 · 共 48 行

CPP
48
字号
// FrameWnd.cpp : implementation file//#include "stdafx.h"#include "fusion.h"#include "FrameWnd.h"#ifdef _DEBUG#define new DEBUG_NEW#undef THIS_FILEstatic char THIS_FILE[] = __FILE__;#endif/////////////////////////////////////////////////////////////////////////////// RxFrameWndRxFrameWnd::RxFrameWnd(){	m_wFrameAlign	= RXFRAME_ALIGN_OTHER;	m_nThickness	= 0;}RxFrameWnd::~RxFrameWnd(){}BEGIN_MESSAGE_MAP(RxFrameWnd, CWnd)	//{{AFX_MSG_MAP(RxFrameWnd)	//}}AFX_MSG_MAPEND_MESSAGE_MAP()/////////////////////////////////////////////////////////////////////////////// RxFrameWnd message handlersvoid RxFrameWnd::OnSwitchToMainMenu(BOOL bActive, int nOldMainMenuID, int nCurMainMenuID){}void RxFrameWnd::PostNcDestroy() {	CWnd::PostNcDestroy();	delete this;}

⌨️ 快捷键说明

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