📄 readme.wzd
字号:
/////////////////////////////////////////////////////////////////////
// Example files.
/////////////////////////////////////////////////////////////////////
WzdThrd.cpp -- a thread class that terminates when it receives
WzdThrd.h a WM_WZDKILLTHREAD windows message
/////////////////////////////////////////////////////////////////////
// Modify any class.
/////////////////////////////////////////////////////////////////////
// 1) create thread but keep it's pointer
m_pThread=AfxBeginThread(RUNTIME_CLASS(CWzdThread));
// 2) send a message to that thread
m_pThread->PostThreadMessage(WM_WZDKILLTHREAD,0,0);
// 3) you can also send a message to a window of that thread if you know
// its handle
/////////////////////////////////////////////////////////////////////
// From: Visual C++ MFC Programming by Example by John E. Swanke
// Copyright (C) 1999 jeswanke. All rights reserved.
/////////////////////////////////////////////////////////////////////
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -