?? splitt.cpp
字號(hào):
// Splitt.cpp : implementation file
//
#include "stdafx.h"
#include "文章比對(duì).h"
#include "Splitt.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CSplitt
IMPLEMENT_DYNCREATE(CSplitt, CSplitterWnd)
CSplitt::CSplitt()
{
}
CSplitt::~CSplitt()
{
}
BEGIN_MESSAGE_MAP(CSplitt, CSplitterWnd)
//{{AFX_MSG_MAP(CSplitt)
ON_WM_MOUSEMOVE()
ON_WM_LBUTTONDOWN()
ON_WM_SETCURSOR()
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CSplitt message handlers
void CSplitt::OnMouseMove(UINT nFlags, CPoint point)
{
// TODO: Add your message handler code here and/or call default
CWnd::OnMouseMove(nFlags, point);
}
void CSplitt::OnLButtonDown(UINT nFlags, CPoint point)
{
// TODO: Add your message handler code here and/or call default
CWnd::OnLButtonDown(nFlags, point);
}
BOOL CSplitt::OnSetCursor(CWnd* pWnd, UINT nHitTest, UINT message)
{
// TODO: Add your message handler code here and/or call default
return CWnd::OnSetCursor(pWnd, nHitTest, message);
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -