CWnd::ModifyStyle
BOOL ModifyStyle( DWORD dwRemove, DWORD dwAdd, UINT nFlags = 0 );
//改变控件样式
Initialization of variables //变量初始化 (构造函数初始化)
The other way to initialize variables, known as constructor initialization, is done by enclosing the initial value between parentheses (()):
type identifier (initial_value) ;
For example:
int a (0);
显式添加库文件:
#pragma comment(lib, "mylib.libb")