📄 const.cpp
字号:
//const.cpp
//全局函数的实现
#include "stdafx.h"
#include "elevator.h"
#include "elevatordlg.h"
void WINAPI HighLight(int i)
{
CElevatorApp* pApp=(CElevatorApp*)AfxGetApp();
CElevatorDlg* pDlg=(CElevatorDlg*)pApp->GetMainWnd ();
pDlg->HighLight (i);
}
void WINAPI StopHighLight(int i)
{
CElevatorApp* pApp=(CElevatorApp*)AfxGetApp();
CElevatorDlg* pDlg=(CElevatorDlg*)pApp->GetMainWnd ();
pDlg->StopHighLight (i);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -