?? editdlg.cpp
字號:
// EditDlg.cpp : implementation file
//
#include "stdafx.h"
#include "ProjectManage.h"
#include "EditDlg.h"
#include ".\editdlg.h"
// CEditDlg dialog
IMPLEMENT_DYNAMIC(CEditDlg, CDialog)
CEditDlg::CEditDlg(CWnd* pParent /*=NULL*/)
: CDialog(CEditDlg::IDD, pParent)
{
}
CEditDlg::~CEditDlg()
{
}
void CEditDlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
}
BEGIN_MESSAGE_MAP(CEditDlg, CDialog)
ON_WM_SIZE()
END_MESSAGE_MAP()
// CEditDlg message handlers
void CEditDlg::OnSize(UINT nType, int cx, int cy)
{
CDialog::OnSize(nType, cx, cy);
/*CWnd * pWnd=GetDlgItem(IDC_EDIT);
if(pWnd!=NULL&&IsWindow(pWnd->m_hWnd))
pWnd->MoveWindow(0,0,cx,cy);*/
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -