?? logdg.cpp
字號:
// LogDg.cpp : implementation file
//
#include "stdafx.h"
#include "hfIRC.h"
#include "LogDg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CLogDg dialog
CLogDg::CLogDg(CWnd* pParent /*=NULL*/)
: CDialog(CLogDg::IDD, pParent)
{
//{{AFX_DATA_INIT(CLogDg)
m_strNickName = _T("");
m_strServerName = _T("");
//}}AFX_DATA_INIT
}
void CLogDg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CLogDg)
DDX_Text(pDX, IDC_EDIT1, m_strNickName);
DDX_Text(pDX, IDC_EDIT2, m_strServerName);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CLogDg, CDialog)
//{{AFX_MSG_MAP(CLogDg)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CLogDg message handlers
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -