📄 clientformview.cpp
字号:
// ClientFormView.cpp : implementation file
//
#include "stdafx.h"
#include "ChatClient.h"
#include "ClientFormView.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CClientFormView
IMPLEMENT_DYNCREATE(CClientFormView, CFormView)
CClientFormView::CClientFormView()
: CFormView(CClientFormView::IDD)
{
//{{AFX_DATA_INIT(CClientFormView)
// NOTE: the ClassWizard will add member initialization here
//}}AFX_DATA_INIT
}
CClientFormView::~CClientFormView()
{
}
void CClientFormView::DoDataExchange(CDataExchange* pDX)
{
CFormView::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CClientFormView)
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CClientFormView, CFormView)
//{{AFX_MSG_MAP(CClientFormView)
ON_WM_CREATE()
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CClientFormView diagnostics
#ifdef _DEBUG
void CClientFormView::AssertValid() const
{
CFormView::AssertValid();
}
void CClientFormView::Dump(CDumpContext& dc) const
{
CFormView::Dump(dc);
}
#endif //_DEBUG
/////////////////////////////////////////////////////////////////////////////
// CClientFormView message handlers
int CClientFormView::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
if (CFormView::OnCreate(lpCreateStruct) == -1)
return -1;
// TODO: Add your specialized creation code here
return 0;
}
void CClientFormView::OnInitialUpdate()
{
CFormView::OnInitialUpdate();
// TODO: Add your specialized code here and/or call the base class
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -