?? dlgclass.cpp
字號:
// Dlgclass.cpp : implementation file
//
#include "stdafx.h"
#include "教學管理信息系統.h"
#include "Dlgclass.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CDlgclass dialog
CDlgclass::CDlgclass(CWnd* pParent /*=NULL*/)
: CDialog(CDlgclass::IDD, pParent)
{
//{{AFX_DATA_INIT(CDlgclass)
// NOTE: the ClassWizard will add member initialization here
//}}AFX_DATA_INIT
}
void CDlgclass::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CDlgclass)
// NOTE: the ClassWizard will add DDX and DDV calls here
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CDlgclass, CDialog)
//{{AFX_MSG_MAP(CDlgclass)
// NOTE: the ClassWizard will add message map macros here
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CDlgclass message handlers
BOOL CDlgclass::PreTranslateMessage(MSG* pMsg)
{
// TODO: Add your specialized code here and/or call the base class
if(pMsg->message==0x100 && pMsg->wParam==13)//屏住ENTER
{
return TRUE;
}
return CDialog::PreTranslateMessage(pMsg);
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -